body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}
header {
    background-color: #b91818;
    color: white;
    text-align: center;
    padding: 1rem;
}
h1 {
    margin: 0;
}
p {
    margin-top: 0.5rem;
}
main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 1rem;
}
.health-card {
    flex: 1;
    max-width: 400px;
    border: 1px solid #ccc;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem;
    box-sizing: border-box;
}
.health-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 1rem;
    border-radius: 8px;
}
.read-more-btn {
    display: inline-block;
    background-color: rgb(2, 124, 2);
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 4px;
}
@media only screen and (max-width: 600px) {
    .health-card {
        flex: 1 0 100%;
    }
}
.buttons-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
  }
  
  .button-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .image-button {
    position: relative;
    width: 100rem;
    max-width: 500px;
    height: 500px;
    background-size: cover;
    background-position: center;
    border: none;
    cursor: pointer;
    overflow: hidden;
    text-align: center;
    border-radius: 9px;
    transition: transform 0.3s ease;
  }
  
  .image-button img {
    display: none; /* Hide the img element */
  }
  
  .image-heading-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 0;
  }
  
  .image-button-heading {
    color: #fff;
    margin: 10;
    font-size: 1.5rem;
  }
  
  .image-description-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
    box-sizing: border-box;
    color: #fff;
  }
  
  .image-button:hover .image-description-container {
    opacity: 1;
  }
  
  .image-button-description {
    color: #fff;
    font-size: 1rem;
    text-align: center;
  }

  
  @media (max-width: 600px) {
    .buttons-section {
      flex-direction: column;
      align-items: center;
    }
  
    .image-button {
      width: 90%;
      max-width: none;
      height: 150px;
    }
  }
  body {background-color: rgba(128, 113, 113, 0.351);}

