body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #d3f8e2, #e4c1f9);
 /* background-image: url(images/background.jpeg); */
}

header {
  background-color: #0f6e5a;
  color: white;
  text-align: center;
  padding: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}ain

.intro {
  text-align: center;
  padding: 40px 20px;
}

.intro h2,
.intro p {
  text-align: center;
}


.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 20px;
}

.card {
  background: white;
  width: 180px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-align: center;
  padding: 15px;
  transition: transform 0.2s;
  cursor: pointer;
}

.card img {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.card:hover {
  transform: scale(1.05);
}

footer {
  background-color: #0f6e5a;
  color: white;
  text-align: center;
  padding: 10px;
  margin-top: 130px;
}

.remedies-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 30px;
}

.remedy-box {
  /* Keep your current design */
  background: white;
  font-weight: bold;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0px 10px 20px rgba(0,0,0,0.1);
  width: 230px;
  text-align: center;
  cursor: pointer;
}

.remedy-box:hover {
  transform: scale(1.05);
}

.detail-section {
  display: none;
  padding: 40px;
  text-align: center;
}

.detail-section h2 {
  margin-bottom: 20px;
  font-size: 28px;
  color: #3b776b;
}

.detail-section p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.back-btn {
  background-color: #3b776b;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  cursor: pointer;
}

#remedy-detail {
  padding: 30px;
  font-size: 18px;
  line-height: 1.6;
}
#remedy-detail h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #3b776b;
}
#remedy-detail strong {
  color: #2e5a50;
}

.women-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 30px;
}

.women-box {
  /* Keep your current design */
  background: white;
  font-weight: bold;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0px 10px 20px rgba(0,0,0,0.1);
  width: 230px;
  text-align: center;
  cursor: pointer;
}

.women-box:hover {
  transform: scale(1.05);
}

.women-section {
  display: none;
  padding: 40px;
  text-align: center;
}

.women-section h2 {
  margin-bottom: 20px;
  font-size: 28px;
  color: #3b776b;
}

.women-section p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

#women-detail {
  padding: 30px;
  font-size: 18px;
  line-height: 1.6;
}
#women-detail h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #3b776b;
}
#women-detail strong {
  color: #2e5a50;
}


.options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 30px;
}

    .option {
  background: white;
  font-weight: bold;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0px 10px 20px rgba(0,0,0,0.1);
  width: 230px;
  text-align: center;
  cursor: pointer;
    }

    .option:hover {
       transform: scale(1.05);
    }

    .back-btn {
  background-color: #3b776b;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  cursor: pointer;
    }

    .back-btn:hover {
      background-color: #45a049;
    }

    .content-box {
      margin-top: 20px;
      padding: 20px;
      display: block;
      border-radius: 10px;
      background-color: #fff7e6;
      border: 2px solid #ffcc80;
    }

    h3 {
      color: #00695c;
    }

    .sub-option {
      margin-top: 10px;
      padding: 10px;
      background-color: #d0f0f8;
      border: 1px solid #90caf9;
      border-radius: 8px;
      cursor: pointer;
    }

    .sub-option:hover {
      background-color: #b3e5fc;
    }
.sub-section {
  padding: 10px 15px;
  background-color: #f9f9f9;
}

.sub-option h3 {
  cursor: pointer;
  margin: 10px 0;
  color: #007b5e;
}

.sub-option .content {
  padding: 10px 0;
  display: block;
}
/* Fix for yellow line and background */
#content-box {
  display: block;
  padding: 20px;
  margin-top: 20px;
  border: none;             /* remove border */
  background-color: transparent; /* make background transparent */
  box-shadow: none;         /* remove any shadow */
  color: #000;              /* use standard text color */
}

/* Optional: You can make content look like Natural Remedies */
#content-box h3 {
  font-size: 20px;
  margin-top: 15px;
  color: #333;
}

#content-box p, 
#content-box a {
  font-size: 16px;
  line-height: 1.6;
  color: #222;
}

#content-box a {
  color: #007bff;
  text-decoration: underline;
}

