@charset "utf-8";
/* CSS Document */
/* --- Modern Nutrition Page Custom Styles --- */
    .nutrition-banner {
      position: relative;
      min-height: 480px;
      /* Utilizing the requested banner image */
      background: url('banner-nutritional-consultation.jpg') no-repeat center center/cover;
      display: flex;
      align-items: center;
      border-bottom: 1px solid var(--line);
    }
    .nutrition-banner::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.85) 45%, rgba(255, 255, 255, 0.1) 100%);
    }
    .nutrition-banner-inner {
      position: relative;
      z-index: 2;
      width: min(100% - 90px, 1620px);
      margin: 0 auto;
    }
    .nutrition-banner-text {
      max-width: 650px;
      padding-top: 30px;
    }
    .nutrition-banner-text h1 {
      font-family: var(--heading);
      font-size: 46px;
      font-weight: 700;
      color: var(--green-deep);
      line-height: 1.15;
      margin-bottom: 22px;
    }
    .nutrition-banner-text h1 span {
      color: var(--red);
    }
    .nutrition-banner-text p {
      font-size: 18px;
      color: #2f3332;
      margin-bottom: 35px;
      line-height: 1.6;
    }

    .nutrition-section {
      padding: 80px 0;
      background: #fff;
    }
    .nutrition-section.alt-bg {
      background: #f3f7f5;
    }
    .nutrition-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .nutrition-img-wrapper {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    }
    .nutrition-img-wrapper img {
      width: 100%;
      height: auto;
      transition: transform 0.4s ease;
    }
    .nutrition-img-wrapper:hover img {
      transform: scale(1.03);
    }
    .nutrition-content h2 {
      font-family: var(--heading);
      font-size: 36px;
      color: var(--ink);
      margin-bottom: 25px;
      line-height: 1.2;
    }
    .nutrition-content h2 .highlight {
      color: var(--green);
    }
    .nutrition-content p {
      font-size: 16.5px;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .nutrition-cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }
    .nutrition-card {
      background: #fff;
      padding: 40px 30px;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
      border-top: 4px solid var(--green);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .nutrition-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    }
    .nutrition-card.card-red {
      border-top-color: var(--red);
    }
    .nutrition-card h3 {
      font-family: var(--heading);
      font-size: 24px;
      margin-top: 0;
      margin-bottom: 18px;
      color: var(--ink);
    }
    .nutrition-card p {
      font-size: 15.5px;
      color: var(--muted);
      margin: 0;
      line-height: 1.75;
    }

    .nutrition-final-thoughts {
      max-width: 850px;
      margin: 0 auto;
      text-align: center;
      background: #fff;
      padding: 60px;
      border-radius: 16px;
      box-shadow: 0 15px 45px rgba(0, 77, 36, 0.06);
      border: 1px solid var(--line);
    }
    .nutrition-final-thoughts h2 {
      font-family: var(--heading);
      font-size: 34px;
      color: var(--green-deep);
      margin-bottom: 25px;
    }
    .nutrition-final-thoughts p {
      font-size: 16.5px;
      color: var(--muted);
      line-height: 1.85;
      text-align: left;
      margin-bottom: 20px;
		padding-left:10px;
		padding-right:10px;
    }
    .nutrition-final-thoughts strong {
      color: var(--ink);
      font-weight: 700;
    }
    .mt-4 { margin-top: 35px; }

    /* Responsive adjustments */
    @media (max-width: 1040px) {
      .nutrition-grid {
        gap: 40px;
      }
    }
    @media (max-width: 820px) {
      .nutrition-grid {
        grid-template-columns: 1fr;
      }
      .nutrition-banner-text h1 {
        font-size: 36px;
      }
    }
    @media (max-width: 600px) {
      .nutrition-banner {
        min-height: 380px;
      }
      .nutrition-banner-text h1 {
        font-size: 30px;
      }
      .nutrition-final-thoughts {
        padding: 40px 20px;
      }
      .nutrition-section {
        padding: 50px 0;
      }
    }
/* Layout wrapper for equal height side-by-side alignment */
.gut-section-wrapper {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 30px;
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Image column stretches to match content height */
.gut-image-box {
  flex: 1;
  min-width: 0;
  display: flex;
}

.gut-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Content box flex adjustment */
.gut-section-wrapper .nutrition-final-thoughts {
  flex: 1.2;
  min-width: 0;
  padding: 0;
}

/* Mobile responsive rules */
@media (max-width: 768px) {
  .gut-section-wrapper {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .gut-image-box {
    width: 100%;
    height: 250px;
  }

  .gut-image-box img {
    height: 100%;
    width: 100%;
  }
}
