
    /* Section container */
.who-section-new {
  padding: 2rem 1rem;
  font-family: inherit;
  color: #222;
}
.who-section-new .container-new {
  max-width: 1100px;
  margin: 0 auto;
}
.section-title-new {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.highlight-new {
  color: #0044cc;
}
.highlight-pink-new {
  color: #cc0066;
}

/* Grid layout */
.who-grid-new {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.conditions-grid-new {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Cards with animation */
.condition-card-new {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #ccc;
  padding: 1rem 0;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideFadeInNew 0.5s forwards;
}
.condition-card-new:nth-child(1) { animation-delay: 0.1s; }
.condition-card-new:nth-child(2) { animation-delay: 0.2s; }
.condition-card-new:nth-child(3) { animation-delay: 0.3s; }
.condition-card-new:nth-child(4) { animation-delay: 0.4s; }
.condition-card-new:nth-child(5) { animation-delay: 0.5s; }
.condition-card-new:nth-child(6) { animation-delay: 0.6s; }
.condition-card-new:nth-child(7) { animation-delay: 0.7s; }

.condition-card-new.active-new {
  background-color: #e6f0ff;
  border-left: 4px solid #0044cc;
}
.condition-icon-new {
  font-weight: bold;
  font-size: 1.4rem;
  color: #0044cc;
  min-width: 30px;
  text-align: center;
}
.condition-card-new h3 { margin:0; font-weight:600; font-size:1.1rem; }
.condition-card-new p { margin:0; font-size:0.9rem; color:#555; }

/* Right image box with animation */
.image-display-new {
    height: 500px;
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px !important;
  border: 1px solid #0044cc;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 68, 204, 0.3);
  background: #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}
.image-display-new.visible-new {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.image-display-new img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.image-display-new:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 68, 204, 0.5);
  border-color: #cc0066;
}
.image-display-new:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (min-width: 801px) {
  .who-grid-new { flex-wrap: nowrap; }
  .image-display-new { margin-top:0; margin-left:2rem; }
}
@media (max-width: 800px) {
  .who-grid-new { flex-direction: column; }
}

/* Keyframes */
@keyframes slideFadeInNew {
  to { opacity:1; transform:translateX(0);}
}

/* Reality section start */
.reality-section-new {
    padding: 2rem 1rem;
    font-family: inherit;
    color: #222;
}
.container-new {
    max-width: 1100px;
    margin: 0 auto;
}
.reality-content-new {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.reality-left-new {
    flex: 1 1 400px;
}
.image-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 68, 204, 0.25);
}
.image-grid-new img {
     border: 1px dashed #cc0066;
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.image-grid-new img:hover {
     border: 1px dashed #cc0066;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 68, 204, 0.5);
}
.reality-right-new {
    flex: 1 1 600px;
}
.section-title-new {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.highlight-new {
    color: #0044cc;
}
.highlight-pink-new {
    color: #cc0066;
}
.tried-list-new {
    margin-bottom: 1rem;
}
.tried-item-new {
    margin: 0.3rem 0;
    font-size: 21px;
    /* font-weight: 600; */
}
.but-text-new {
    margin: 1rem 0 0.5rem 0;
    font-size: 30px !important;
    font-size: 1.1rem;
}
.symptoms-list-new {
    font-size: 30px;
    list-style: disc;
    margin-left: 1.4rem;
    color: #444;
    margin-bottom: 1.5rem;
}
.symptoms-list-new li {
    font-size: 18px !important;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}
.insight-box-new h3 {
    font-weight: 700;
    margin-bottom: 0.7rem;
}
.insight-box-new p {
    margin: 0.4rem 0;
    color: #555;
}
.comparison-new {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}
.comparison-item-new {
    background-color: #f0f4ff;
    padding: 1rem;
    border-radius: 10px;
    flex: 1;
    font-weight: 600;
    color: #0044cc;
}
.different-new {
    background-color: #cc0066;
    color: #fff;
}
@media (max-width: 800px) {
    .reality-content-new {
        flex-direction: column;
    }
    .reality-left-new,
    .reality-right-new {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .image-grid-new img {
        height: 300px;
    }
}
.image-single-new {
    max-width: 450px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 68, 204, 0.25);
    opacity: 0;
    animation: fadeInUp-new 1s ease forwards;
    animation-delay: 0.3s; /* optional delay */
}
.image-single-new img {
    border: 1px dashed #cc0066;
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}
.image-single-new img:hover {
    border: 1px dashed #cc0066;
    transform: scale(1.05);
    /* box-shadow: 0 12px 35px rgba(0, 68, 204, 0.5); */
}
/* Keyframes for fade in up */
@keyframes fadeInUp-new {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Responsive adjustments */
@media (max-width: 800px) {
    .reality-left-new, .reality-right-new {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .image-single-new img {
        height: 350px;
    }
}


/* Stressors Section */
.stressors-section {
    padding: 2rem 1rem;
    font-family: inherit;
    color: #222;
    text-align: center;
}

.stressors-section h3 {
  font-style: italic;
    font-size:40px;
    font-weight: 700;
    margin-bottom: 2rem;
}

.stressors-grid {
  
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem; /* Reduced the gap between the cards */
    margin-top: 1.5rem;
    justify-items: center; /* Center the cards horizontally */
    max-width: 1200px; /* Limit the width to center the grid */
    margin-left: auto; /* Center the grid by setting left margin to auto */
    margin-right: auto; /* Center the grid by setting right margin to auto */
}

.stressor-item {
  border: 1px solid #cc0066;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 68, 204, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    text-align: center;
    cursor: pointer;
    width: 220px; /* Fixed width for consistency */
    height: 220px; /* Fixed height for consistency */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.stressor-item .stressor-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.stressor-item p {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Hover effect on card */
.stressor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 68, 204, 0.2);
    border: 2px solid #0044cc; /* Add a border on hover */
}

.stressor-item:active {
    box-shadow: 0 8px 15px rgba(0, 68, 204, 0.15); /* Remove shadow on click */
}

/* Animation for fade-in */
.stressor-item:nth-child(1) {
    animation-delay: 0.3s;
}

.stressor-item:nth-child(2) {
    animation-delay: 0.5s;
}

.stressor-item:nth-child(3) {
    animation-delay: 0.7s;
}

.stressor-item:nth-child(4) {
    animation-delay: 0.9s;
}

/* Keyframes for fade in up */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 800px) {
    .stressors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem; /* Reduced gap for mobile screens as well */
    }

    .stressor-item {
        padding: 1rem;
        width: 180px; /* Adjust width for smaller screens */
        height: 180px; /* Adjust height for smaller screens */
    }

    .stressor-item .stressor-icon {
        font-size: 1.5rem;
    }

    .stressor-item p {
        font-size: 0.9rem;
    }
}



/* Section container */
.approach-section-new {
  padding: 2rem 1rem;
  font-family: inherit;
  color: #222;
}

.container-new {
  max-width: 1100px;
  margin: 0 auto;
}

/* Title */
.section-title-new {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.highlight-new {
  color: #0044cc;
}

.highlight-pink-new {
  color: #cc0066;
}

/* Cards container */
.approach-cards-container-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* Individual card */
.approach-card-new {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 68, 204, 0.25);
  transition: transform 0.3s ease;
  opacity: 0;
}

.approach-card-new:hover {
  transform: translateY(-5px);
}

.approach-card-left-new {
  flex: 1;
}

.approach-card-image-new {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.approach-card-right-new {
  flex: 1;
  padding: 1rem;
}

.approach-card-right-new h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.approach-card-right-new p {
  font-size: 1rem;
  color: #444;
}

/* Animation for cards */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.wow.fadeInUp {
  animation: fadeInUp 1s ease forwards;
}

.wow.fadeInUp[data-wow-delay="0.2s"] {
  animation-delay: 0.2s;
}

.wow.fadeInUp[data-wow-delay="0.4s"] {
  animation-delay: 0.4s;
}

.wow.fadeInUp[data-wow-delay="0.6s"] {
  animation-delay: 0.6s;
}

.wow.fadeInUp[data-wow-delay="0.8s"] {
  animation-delay: 0.8s;
}

/* Responsive */
@media (max-width: 800px) {
  .approach-cards-container-new {
    grid-template-columns: 1fr;
  }

  .approach-card-left-new img {
    height: 150px;
  }
}
/* Program Intro Section */
.program-intro {
    padding: 3rem 1rem;
    text-align: center;
    font-family: inherit;
    color: #222;
}

.program-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0044cc; /* Theme color */
}

.program-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.not-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.not-item, .is-item {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0.5rem 0;
}

.is-item {
    color: #0044cc; /* Highlight the "is" item */
}

.combining-section {
    margin-bottom: 2rem;
}

.combining-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.combining-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns on larger screens */
    gap: 2rem; /* Gap between grid items */
    justify-items: center;
    margin-bottom: 2rem;
}

.combining-item {
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    padding: 1rem;
    background-color: #f0f4ff;
    border-radius: 8px;
    border: 1px solid #cc0066;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.combining-symbol {
    font-size: 1.5rem;
    color: #0044cc;
}

.combining-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 68, 204, 0.2);
}

.one-team {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 2rem;
}

.program-image-container {
    margin-bottom: 2rem;
}

.program-image {
  border: 1px solid black;
    width: 70%;
    max-width: 700px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 68, 204, 0.1);
}

.cta-button-large {
    display: inline-block;
    background-color: #FF70A3;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button-large:hover {
  border: 1px solid #0044cc;
  color: #0044cc;
    background-color: white;
    transform: translateY(-5px);
}

/* Responsive Adjustments */
@media (max-width: 800px) {
    .program-title {
        font-size: 2rem;
    }

    .program-subtitle {
        font-size: 1rem;
    }

    .not-list {
        flex-direction: column;
    }

    .combining-grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns on smaller screens */
        gap: 1rem; /* Reduced gap for smaller screens */
    }

    .combining-item {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .combining-symbol {
        font-size: 1.2rem;
    }

    .one-team {
        font-size: 1.2rem;
    }

    .program-image {
        max-width: 100%;
    }

    .cta-button-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}
/* Combining Section */
.combining-section {
    margin-bottom: 2rem;
    text-align: center;
}

.combining-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.combining-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns */
    gap: 1.5rem; /* Increased gap for better spacing */
    justify-items: center; /* Center the grid items horizontally */
    margin-bottom: 2rem;
    max-width: 1200px; /* Limit grid width for better center alignment */
    margin-left: auto;
    margin-right: auto;
}

.combining-item {
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #cc0066;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 320px; /* Increased width for more space */
    overflow: hidden;
    position: relative;
    transform: skewY(-5deg); /* Slanted effect */
}

.combining-item:hover {
    transform: translateY(-10px) skewY(0deg); /* Move the card upward on hover */
    box-shadow: 0 10px 25px rgba(0, 68, 204, 0.2);
}

.icon-container {
    font-size: 2rem;
    color: #0044cc;
    transition: transform 0.3s ease;
}

.combining-item:hover .icon-container {
    transform: rotate(360deg); /* Rotate the icon on hover */
}

.text-container {
    flex-grow: 1;
}

.combining-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

/* Responsive Adjustments */
@media (max-width: 800px) {
    .combining-grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns on smaller screens */
        gap: 1rem;
    }

    .combining-item {
        font-size: 0.9rem;
        padding: 1rem;
        max-width: 250px; /* Reduced width for smaller screens */
        transform: skewY(-3deg); /* Slightly smaller skew on mobile */
    }

    .combining-title {
        font-size: 1rem;
    }

    .combining-symbol {
        font-size: 1.3rem;
    }
}
/* One Team Section */
.one-team {
    font-size: 40px;
    font-weight: 700;
    color: #20296E; /* Theme color */
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Arial', sans-serif; /* Elegant font family */
    font-style: italic; /* Added italics */
    letter-spacing: 1px; /* Slight letter spacing */
    text-transform: uppercase; /* Uppercase for emphasis */
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out forwards; /* Smooth fade-in and upward movement */
    text-shadow: 2px 2px 5px rgba(0, 68, 204, 0.2), 0 0 25px rgba(0, 68, 204, 0.3); /* Subtle text shadow */
}

/* Keyframes for fade-in animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 800px) {
    .one-team {
        font-size: 28px; /* Smaller font size on mobile */
        margin-bottom: 1.5rem;
        text-transform: none; /* Remove uppercase on smaller screens */
    }
}

/* What You Receive Section */
.receive-section {
    padding: 3rem 1rem;
    text-align: center;
    font-family: inherit;
    color: #222;
}

.receive-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #0044cc; /* Theme color */
}

.receive-highlight {
    color: #cc0066;
}

.receive-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three equal columns */
    gap: 2rem; /* Spacing between the cards */
    justify-items: center;
}

.receive-card {
    background-color: #f0f4ff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #cc0066;
    width: 100%;
    max-width: 350px; /* Maximum width for each card */
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.receive-card:hover {
    transform: translateY(-5px); /* Slight upward movement on hover */
    box-shadow: 0 8px 25px rgba(0, 68, 204, 0.2);
}

.receive-card-icon {
    font-size: 3rem;
    color: #0044cc;
    margin-bottom: 1rem;
}

.receive-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.receive-card-list {
    list-style: none;
    padding-left: 0;
    color: #555;
}

.receive-card-list li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.receive-free-tag {
    background-color: #cc0066;
    color: #fff;
    padding: 0.3rem 0.5rem;
    font-size: 0.9rem;
    border-radius: 5px;
}

/* Responsive Adjustments */
@media (max-width: 800px) {
    .receive-cards-container {
        grid-template-columns: repeat(2, 1fr); /* Two columns on smaller screens */
        gap: 1rem;
    }

    .receive-card {
        padding: 1rem;
        max-width: 100%; /* Allow the card to take full width */
    }

    .receive-card-title {
        font-size: 1.2rem; /* Adjust the card title size */
    }

    .receive-card-list li {
        font-size: 0.9rem; /* Adjust the list item font size */
    }

    .receive-card-icon {
        font-size: 2.5rem; /* Adjust icon size for mobile */
    }
}
/* Container & Title */
.receive-new-section {
    padding: 80px 0;
    background: #fdf6f9;
    text-align: center;
}

.receive-new-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.receive-new-section .highlight-pink {
    color: #ff3b81;
}

/* Cards Wrapper */
.receive-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Individual Card */
.receive-new-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    width: 300px;
    border: 2px solid #ff3b81;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Animation */
.receive-new-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    border-color: #ff1f6b;
}

/* Card Icon */
.card-icon-circle {
    font-size: 50px;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    background: #ff3b81;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.receive-new-card:hover .card-icon-circle {
    transform: rotate(15deg) scale(1.1);
}

/* Card Heading */
.receive-new-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

/* List */
.receive-new-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.receive-new-list li {
    font-size: 1rem;
    padding: 5px 0;
    line-height: 1.5;
    position: relative;
}

.receive-new-list li strong {
    color: #000;
}

.receive-new-list li .free-badge {
    background: #ff3b81;
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-left: 5px;
}

/* Responsive */
@media (max-width: 992px) {
    .receive-cards-wrapper {
        gap: 20px;
    }
    .receive-new-card {
        width: 45%;
    }
}

@media (max-width: 576px) {
    .receive-new-card {
        width: 100%;
    }
}

/* --- Variables --- */
:root {
  --w-primary: #d63384;      
  --w-bg-section: #fdf2f8;   
  --w-bg-card: #ffffff;      
  --w-text-main: #333333;
  --w-text-sub: #666666;
  --w-border: #fae1ec;       
  --w-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* --- Section --- */
.who-section-new {
  padding: 60px 20px;
  background-color: var(--w-bg-section);
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}

.container-new {
  max-width: 1100px;
  margin: 0 auto;
}

/* --- Title --- */
.section-title-new {
  font-size: 42px;
  font-weight: 700;
  color: var(--w-text-main);
  text-align: left;
  margin: 0 0 40px 0 !important;
  line-height: 1.2;
}

.highlight-pink-new {
  color: var(--w-primary);
  position: relative;
  display: inline-block;
}

.highlight-pink-new::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: rgba(214, 51, 132, 0.15);
  z-index: -1;
  border-radius: 4px;
}

/* --- Layout Grid --- */
.who-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 50% List / 50% Image */
  gap: 50px;
  align-items: start;
  position: relative;
}

/* --- List Items (Compact) --- */
.conditions-grid-new {
  display: flex;
  flex-direction: column;
  gap: 12px; /* Reduced gap between cards */
}

.condition-card-new {
  background: var(--w-bg-card);
  padding: 15px 20px; /* Reduced padding for smaller height */
  border-radius: 10px;
  display: flex;
  align-items: center; /* Vertically center icon */
  gap: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}

/* Text Styling */
.condition-card-new h3 {
  font-size: 18px; /* Slightly smaller title */
  margin: 0 0 4px 0;
  color: var(--w-text-main);
  font-weight: 600;
}

.condition-card-new p {
  font-size: 14px;
  margin: 0;
  color: var(--w-text-sub);
  line-height: 1.4;
}

/* Icon Styling */
.condition-icon-new {
  width: 28px; /* Smaller icon circle */
  height: 28px;
  min-width: 28px;
  background: #f3f4f6;
  color: #9ca3af;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.2s ease;
}

/* Hover & Active States */
.condition-card-new:hover,
.condition-card-new.active {
  background: #ffffff;
  border-color: var(--w-border);
  box-shadow: var(--w-shadow);
  transform: translateX(5px);
}

.condition-card-new:hover .condition-icon-new,
.condition-card-new.active .condition-icon-new {
  background: var(--w-primary);
  color: #fff;
}

/* --- Sticky Image (Right Side) --- */
.image-display-new {
  position: sticky;
  top: 30px; 
  height: 470px; /* Matched to list height */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  background: #fff;
}

.image-display-new img {

  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
  display: block;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .section-title-new {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px !important;
  }
  
  .who-grid-new {
    grid-template-columns: 1fr; /* Stack vertically */
  }

  .image-display-new {
    display: none; /* Hide sticky image on tablets/mobile */
  }

  .condition-card-new:hover,
  .condition-card-new.active {
    transform: none; /* Remove slide on touch */
  }
}

@media (max-width: 480px) {
  .who-section-new {
    padding: 40px 15px;
  }
  
  .condition-card-new {
    align-items: flex-start; /* Align icon top on very small screens */
  }
  
  .condition-icon-new {
    margin-top: 3px;
  }
}

/* --- Section Container --- */
.premium-offer-section {
    padding: 80px 20px;
    background-color: #f9fbfd; /* Very subtle blue-grey tint */
    font-family: 'Segoe UI', system-ui, sans-serif;
    overflow: hidden;
}

.premium-offer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Typography --- */
.premium-offer-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 60px;
    line-height: 1.2;
}

.premium-highlight {
    color: #d63384; /* Pink */
    display: inline-block;
    position: relative;
    z-index: 1;
}

/* Highlight underline effect */
.premium-highlight::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(214, 51, 132, 0.1);
    z-index: -1;
    border-radius: 4px;
}

/* --- Grid Layout --- */
.premium-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* --- Card Design --- */
.premium-card-item {
    background: #ffffff;
    flex: 1 1 350px; /* Base width 350px, grows to fill */
    max-width: 380px;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #edf2f7;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Hover Effect */
.premium-card-item:hover {
    transform: translateY(-10px); /* Lifts up */
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(214, 51, 132, 0.3);
}

/* --- Icon Wrapper --- */
.premium-icon-box {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.premium-card-item:hover .premium-icon-box {
    transform: scale(1.1) rotate(2deg);
}

/* --- Card Title --- */
.premium-card-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
}

/* Pink divider line under title */
.premium-card-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: #d63384;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.premium-card-item:hover h3::after {
    width: 100px; /* Expands on hover */
}

/* --- List Styles --- */
.premium-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left;
}

.premium-features-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 15px;
    color: #64748b;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.premium-features-list li:last-child {
    border-bottom: none;
}

.premium-features-list li strong {
    color: #1e293b;
    font-weight: 600;
}

/* --- Badge & Checkmark --- */
.premium-free-tag {
    background-color: #d63384;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 12px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(214, 51, 132, 0.3);
    animation: premium-pulse 2s infinite;
}

.premium-check {
    color: #10B981; /* Green */
    font-weight: bold;
    font-size: 16px;
}

@keyframes premium-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
    .premium-card-item {
        flex: 1 1 45%; /* Two cards per row on tablets */
    }
}

@media (max-width: 768px) {
    .premium-offer-section {
        padding: 50px 15px;
    }

    .premium-offer-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .premium-card-item {
        flex: 1 1 100%; /* Full width on mobile */
        max-width: 100%;
        padding: 30px 20px;
    }
}
/* --- Section Container --- */
.mission-vision-unique-section {
    padding: 80px 0;
    background-color: #ffffff;
    overflow: hidden; /* Prevents animation overflow */
}

/* --- Image Styling --- */
.mv-unique-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
}

.mv-unique-img-wrapper:hover {
    transform: translateY(-5px); /* Subtle lift on hover */
}

.mv-unique-img-wrapper figure {
    margin: 0;
    width: 100%;
}

.mv-unique-img-wrapper img {
    width: 100%;
    height: 350px; /* Consistent height */
    object-fit: cover; /* Ensures image doesn't stretch */
    display: block;
    border-radius: 20px;
}

/* --- Content Content Styling --- */
.mv-unique-content-box {
    padding: 20px;
}

.mv-unique-card {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

/* --- Icon Box --- */
.mv-unique-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background-color: #fff0f6; /* Light Pink Background */
    border-radius: 50%; /* Circle */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(214, 51, 132, 0.15);
    transition: all 0.3s ease;
}

.mv-unique-card:hover .mv-unique-icon {
    background-color: #d63384; /* Dark Pink on Hover */
    transform: rotate(360deg);
}

/* Filter to turn black SVG white on hover (optional) */
.mv-unique-card:hover .mv-unique-icon img {
    filter: brightness(0) invert(1); 
}

.mv-unique-icon img {
    width: 35px;
    height: 35px;
    transition: filter 0.3s ease;
}

/* --- Text Styling --- */
.mv-unique-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 15px 0;
    position: relative;
}

.mv-unique-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* --- Spacing Helper --- */
.mv-mb-50 {
    margin-bottom: 50px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .mv-unique-img-wrapper {
        margin-bottom: 30px;
    }
    
    .mv-unique-card {
        flex-direction: column; /* Stack icon and text on mobile */
        text-align: center;
        align-items: center;
    }

    .mv-unique-img-wrapper img {
        height: auto; /* Allow auto height on mobile */
        max-height: 300px;
    }
}

/* --- Section Container --- */
.who-section-new {
  padding: 80px 20px;
  background-color: #f9fafb; /* Light, clean background */
  font-family: 'Segoe UI', sans-serif;
  overflow: visible; /* Important for sticky positioning */
}

.container-new {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Title Styling --- */
.section-title-new {
  font-size: 42px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 50px;
  line-height: 1.2;
}

.highlight-pink-new {
  color: #d63384; /* Deep Pink */
  position: relative;
  display: inline-block;
}

.highlight-pink-new::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(214, 51, 132, 0.15);
  border-radius: 4px;
  z-index: -1;
}

/* --- Layout Grid (Desktop) --- */
.who-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 50% List | 50% Image */
  gap: 60px;
  align-items: start; /* Essential for sticky to work */
  position: relative;
}

/* --- Left Column: Card List --- */
.conditions-grid-new {
  display: flex;
  flex-direction: column;
  gap: 15px; /* Space between cards */
}

.condition-card-new {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  cursor: pointer;
  border: 1px solid transparent;
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}

/* Card Text */
.condition-card-new h3 {
  font-size: 18px;
  margin: 0 0 6px 0;
  color: #333333;
  font-weight: 600;
}

.condition-card-new p {
  font-size: 14px;
  margin: 0;
  color: #666666;
  line-height: 1.5;
}

/* Icon Circle */
.condition-icon-new {
  width: 30px;
  height: 30px;
  min-width: 30px;
  background: #f3f4f6;
  color: #9ca3af; /* Grey checkmark */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* --- Hover & Active States --- */
.condition-card-new:hover,
.condition-card-new.active {
  background: #ffffff;
  border-color: #fce7f3; /* Light pink border */
  box-shadow: 0 10px 25px rgba(214, 51, 132, 0.1); /* Pinkish shadow */
  transform: translateX(5px);
}

.condition-card-new:hover .condition-icon-new,
.condition-card-new.active .condition-icon-new {
  background: #d63384;
  color: #ffffff;
}

/* --- Right Column: Sticky Image --- */
.image-display-new {
  position: -webkit-sticky; /* For Safari */
  position: sticky;
  top: 40px; /* Sticks 40px from the top of the screen */
  height: 500px; /* Fixed height for consistency */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  background-color: #eee; /* Placeholder bg */
}

.image-display-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease-in-out;
}

/* --- Mobile & Tablet Responsiveness --- */
@media (max-width: 992px) {
  .who-section-new {
    padding: 60px 20px;
  }

  .section-title-new {
    font-size: 32px;
    text-align: center; /* Center title on mobile */
  }

  .who-grid-new {
    grid-template-columns: 1fr; /* Stack into 1 column */
    gap: 40px;
  }

  /* On mobile, usually better to hide the sticky image 
     to save scroll space, or move it to top. 
     Here we hide it for better UX. */
  .image-display-new {
    display: none; 
  }
  
  .condition-card-new:hover,
  .condition-card-new.active {
    transform: none; /* Disable slide effect on touch */
  }
}
/* --- Section & Container --- */
.who-section-new {
  padding: 80px 20px;
  background-color: #f9fafb; /* Light Grey Background */
  font-family: 'Segoe UI', sans-serif;
  overflow: visible; /* Required for sticky positioning */
}

.container-new {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Title Styling --- */
.section-title-new {
  font-size: 42px;
  font-weight: 700;
  color: #1f2937; /* Dark Grey */
  margin-bottom: 50px;
  line-height: 1.2;
}

.highlight-pink-new {
  color: #d63384; /* Pink */
  position: relative;
  display: inline-block;
}

.highlight-pink-new::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(214, 51, 132, 0.15);
  border-radius: 4px;
  z-index: -1;
}

/* --- Grid Layout (Desktop) --- */
.who-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 50% Text | 50% Image */
  gap: 60px;
  align-items: start; /* Important for sticky image */
  position: relative;
}

/* --- Left Column: Cards --- */
.conditions-grid-new {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.condition-card-new {
  background: #ffffff;
  padding: 20px 25px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  cursor: pointer;
  border: 1px solid transparent;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

/* Card Text */
.condition-card-new h3 {
  font-size: 19px;
  margin: 0 0 6px 0;
  color: #333333;
  font-weight: 600;
}

.condition-card-new p {
  font-size: 15px;
  margin: 0;
  color: #666666;
  line-height: 1.5;
}

/* Icon Styling */
.condition-icon-new {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: #f3f4f6;
  color: #9ca3af;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* --- Active & Hover States --- */
.condition-card-new:hover,
.condition-card-new.active {
  background: #ffffff;
  border-color: rgba(214, 51, 132, 0.3);
  box-shadow: 0 10px 25px rgba(214, 51, 132, 0.1);
  transform: translateX(8px); /* Slide effect */
}

.condition-card-new:hover .condition-icon-new,
.condition-card-new.active .condition-icon-new {
  background: #d63384;
  color: #ffffff;
}

/* --- Right Column: Sticky Image --- */
.image-display-new {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 40px; /* Stops 40px from top of screen */
  height: 550px; /* Fixed height for desktop */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  background-color: #eeeeee;
}

.image-display-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
  display: block;
}

/* --- Mobile Responsive Code --- */
@media (max-width: 992px) {
  .who-section-new {
    padding: 60px 20px;
  }

  .section-title-new {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
  }

  .who-grid-new {
    /* Switch to single column stack */
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .condition-card-new {
    padding: 15px;
  }

  .condition-card-new:hover,
  .condition-card-new.active {
    transform: none; /* Disable slide on touch */
  }

  /* Image Settings for Mobile */
  .image-display-new {
    position: relative; /* Remove sticky on mobile */
    top: 0;
    width: 100%;
    height: 300px; /* Smaller height for mobile */
    order: 2; /* Ensures image is at the bottom (Down side) */
    margin-top: 10px;
  }
}

/* Women Conditions Section Styling */
.women-conditions-section {
  padding: 2.5rem 0; /* Further reduced vertical padding */
  background-color: var(--wc-bg-color, #f8f9fa);
  color: var(--wc-text-color, #333);
}

.wc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.wc-section-title {
  font-size: 2.5rem; /* Slightly smaller title */
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem; /* Further reduced margin */
  color: inherit;
}

.wc-highlight-accent {
  color: var(--wc-accent-color, #ff6b8b);
}

/* Content Grid Layout */
.wc-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem; /* Further reduced gap between columns */
  align-items: stretch; /* Make children stretch to equal height */
}

/* Conditions List (Left Column) */
.wc-conditions-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* Further reduced gap between cards */
  padding-right: 1rem; /* Slightly reduced padding right */
  height: 100%;
}

.wc-condition-card {
  display: flex;
  align-items: center;
  gap: 0.7rem; /* Reduced gap inside card */
  background-color: var(--wc-card-bg, #ffffff);
  padding: 1rem; /* Further reduced card padding */
  border-radius: 10px; /* Slightly smaller border-radius */
  box-shadow: 0 5px 15px var(--wc-shadow-light, rgba(0, 0, 0, 0.07)); /* Lighter shadow */
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.wc-condition-card:hover {
  transform: translateY(-4px); /* Slightly less hover lift */
  box-shadow: 0 8px 20px var(--wc-shadow-hover, rgba(0, 0, 0, 0.1));
}

.wc-condition-card.wc-active {
  border-color: var(--wc-accent-color, #ff6b8b);
  box-shadow: 0 6px 20px var(--wc-accent-shadow, rgba(255, 107, 139, 0.15)); /* Lighter active shadow */
  transform: translateY(-2px); /* Slightly less active lift */
}

.wc-condition-icon {
  font-size: 1.5rem; /* Slightly smaller icon size */
  color: var(--wc-accent-color, #ff6b8b);
  min-width: 30px; /* Adjust min-width for icon */
  text-align: center;
}

.wc-condition-card h3 {
  font-size: 1.25rem; /* Further reduced heading size */
  font-weight: 600;
  color: inherit;
  margin-bottom: 0.25rem;
  margin-top: 0;
}

.wc-condition-card p {
  font-size: 0.9rem; /* Further reduced paragraph size */
  color: var(--wc-text-light, #555);
  line-height: 1.4; /* Tighter line height */
  margin: 0;
}

/* Image Display (Right Column) */
.wc-image-display {
  position: sticky;
  top: 90px; /* Slightly adjusted sticky top */
  align-self: flex-start;
  border-radius: 10px; /* Slightly smaller border-radius */
  overflow: hidden;
  box-shadow: 0 8px 25px var(--wc-shadow-light, rgba(0, 0, 0, 0.08));
  background-color: var(--wc-card-bg, #ffffff);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.wc-image-display img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease, transform 0.4s ease; /* Slightly faster animation */
}

/* Image animation */
.wc-image-display img.animated {
  transform: scale(1.03); /* Smaller scale for animation */
}
.wc-image-display img.static {
  transform: scale(1);
}

.wc-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%); /* Slightly darker gradient */
  color: white;
  padding: 1rem; /* Further reduced overlay padding */
  transform: translateY(0%);
  transition: transform 0.3s ease-out;
}

.wc-image-overlay h3 {
  font-size: 1.4rem; /* Further reduced overlay heading size */
  margin-bottom: 0.3rem;
  font-weight: 700;
  margin-top: 0;
}

.wc-image-overlay p {
  font-size: 0.95rem; /* Further reduced overlay paragraph size */
  line-height: 1.4;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .wc-section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .wc-content-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem; /* Adjusted gap for single column */
  }

  .wc-conditions-list {
    padding-right: 0;
    height: auto;
  }

  .wc-image-display {
    position: relative;
    top: auto;
    width: 100%;
    margin-top: 1.25rem; /* Reduced margin top */
    height: 280px; /* Further reduced fixed height for image on tablet */
    aspect-ratio: unset;
  }
}

@media (max-width: 768px) {
  .wc-section-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .wc-condition-card {
    padding: 0.8rem; /* Further reduced card padding */
    gap: 0.6rem;
  }

  .wc-condition-icon {
    font-size: 1.3rem;
    min-width: 28px;
  }

  .wc-condition-card h3 {
    font-size: 1.15rem;
  }

  .wc-condition-card p {
    font-size: 0.85rem;
  }

  .wc-image-overlay h3 {
    font-size: 1.25rem;
  }

  .wc-image-overlay p {
    font-size: 0.9rem;
  }

  .wc-image-display {
    height: 240px; /* Further reduced fixed height for image */
  }
}

@media (max-width: 576px) {
  .wc-container {
    padding: 0 0.6rem; /* Tighter padding for very small screens */
  }

  .wc-section-title {
    font-size: 1.4rem; /* Even smaller title size */
    margin-bottom: 1.2rem;
  }

  .wc-condition-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 0.7rem; /* Even more reduced padding */
  }

  .wc-condition-card h3 {
    margin-top: 0.3rem;
    margin-bottom: 0.15rem;
  }

  .wc-condition-icon {
    margin-bottom: 0.3rem;
  }

  .wc-image-display {
    height: 180px; /* Further reduced fixed height for very small screens */
  }
}

/* Section Styling */
    .outcomes-section {
        background-color: var(--secondary-color);
        padding: 80px 0;
        font-family: var(--default-font);
    }

    .outcomes-title-box {
        text-align: center;
        margin-bottom: 50px;
    }

    .outcomes-title-box h2 {
        font-size: 32px;
        color: var(--primary-color);
        font-weight: 700;
        margin: 0;
    }

    .highlight-pink {
        color: var(--accent-color);
    }

    /* Main Grid Layout */
    .outcomes-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-bottom: 30px;
    }

    /* Primary Outcome Chip Styling */
    .outcome-chip {
        background: var(--white-color);
        border: 1px solid var(--divider-color);
        border-radius: 20px;
        padding: 30px;
        position: relative;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .outcome-chip:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(32, 41, 110, 0.08);
        border-color: var(--accent-color);
    }

    /* Result Badge (The clinical outcome) */
    .outcome-result {
        background-color: rgba(255, 112, 163, 0.1); /* Light Accent */
        color: var(--accent-color);
        font-weight: 700;
        font-size: 14px;
        padding: 8px 15px;
        border-radius: 50px;
        display: inline-block;
        margin-bottom: 20px;
        width: fit-content;
    }

    /* Quote Styling */
    .outcome-quote {
        font-size: 16px;
        color: var(--primary-color);
        font-style: italic;
        line-height: 1.6;
        margin-bottom: 20px;
        flex-grow: 1; /* Pushes author to bottom */
    }

    /* Author Info */
    .outcome-author h4 {
        font-size: 18px;
        font-weight: 700;
        color: var(--primary-color);
        margin: 0;
    }

    /* Decorative Quote Icon */
    .quote-icon {
        position: absolute;
        top: 25px;
        right: 25px;
        opacity: 0.1;
    }

    /* Mini Testimonials Grid */
    .more-outcomes-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 25px;
    }

    .mini-chip {
        background: var(--primary-color); /* Dark Blue background */
        border-radius: 16px;
        padding: 25px;
        color: var(--white-color);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .mini-chip p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 10px;
        opacity: 0.9;
        font-style: italic;
    }

    .mini-chip cite {
        font-weight: 700;
        color: var(--accent-color);
        font-style: normal;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Mobile Adjustments */
    @media (max-width: 768px) {
        .more-outcomes-grid {
            grid-template-columns: 1fr;
        }
        .outcomes-title-box h2 {
            font-size: 26px;
        }
    }