.who-for-section {
    padding: 4rem 0 2rem 0;
    background: var(--beige-light);
    position: relative;
    overflow: hidden;
}

.who-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

/* Card design matching description-card style */
.who-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(74, 48, 33, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.who-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(74, 48, 33, 0.12);
}

/* Special card styling */
.who-card.special-card {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.who-card.special-card h3 {
    color: white;
}


/* Icon style matching description cards */
.who-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.who-card:nth-child(1) .card-icon { animation-delay: 0s; }
.who-card:nth-child(2) .card-icon { animation-delay: 0.5s; }
.who-card:nth-child(3) .card-icon { animation-delay: 1s; }
.who-card:nth-child(4) .card-icon { animation-delay: 1.5s; }
.who-card:nth-child(5) .card-icon { animation-delay: 2s; }
.who-card:nth-child(6) .card-icon { animation-delay: 2.5s; }

.who-card .card-icon::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

/* Headers matching description cards */
.who-card h3 {
    color: var(--tropical-green);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.who-card h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.who-card:hover h3::after {
    width: 80px;
}

.who-card p {
    color: var(--cocoa-brown);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Reassurance box - softer style */
.who-reassurance {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 2rem;
    margin: 0 auto 2rem;
    max-width: 800px;
    text-align: center;
    border-left: 4px solid var(--gold);
    border-right: 4px solid var(--gold);
    box-shadow: 0 2px 10px rgba(74, 48, 33, 0.05);
}

.who-reassurance p {
    color: var(--cocoa-brown);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Animation matching existing float animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Responsive Design matching existing patterns */
@media (max-width: 768px) {
    .who-for-section {
        padding: 3rem 0 0 0;
    }

    .who-cards-container {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 2rem;
    }

    .who-card {
        padding: 2rem;
    }

    .who-card h3 {
        font-size: 1.5rem;
    }

    .who-card p {
        font-size: 1rem;
    }
    
    .who-reassurance {
        margin: 0 1rem 2rem;
        font-size: 1rem;
        padding: 1.5rem;
    }
}

/* Tablet view - 2 columns */
@media (min-width: 769px) and (max-width: 1024px) {
    .who-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* DESKTOP: put the special card 5th (row 2, col 2 in a 3-col grid) */
@media (min-width: 1024px) {
  .who-cards-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px; /* keep your current gap if different */
  }

  .who-card.special-card {
    grid-column: 2; /* middle column */
    grid-row: 2;     /* second row -> overall #5 */
  }
}

/* MOBILE: single column, make it #6 (last) */
@media (max-width: 767px) {
  .who-cards-container {
    display: grid;
    grid-template-columns: 1fr;
  }

  /* assuming there are exactly 6 cards */
  .who-card.special-card {
    grid-column: 1;
    grid-row: 6;   /* last in a 6-card list */
  }
}
