.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
           WHO THIS HELPS SECTION (REDESIGNED)
           ======================================== */
.who-helps-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--soft-peach) 100%);
}

.sports-our-rehabilitation {
    background: linear-gradient(135deg, rgba(252, 195, 0, 0.02) 0%, rgba(0, 146, 68, 0.02) 50%, rgba(235, 28, 36, 0.02) 100%);
}

.who-helps-section .container {
    grid-template-columns: 1fr;
    padding: 0 0px;
}

/* Section Header */
.who-helps-header {
    max-width: 800px;
    margin: 0 auto 0px;
    text-align: center;
}

.section-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.highlight-green {
    color: var(--brand-green);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 400;
}

/* Patient Group Grid: 3 columns on Desktop */
.patient-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Individual Patient Item Styling */
.patient-item {
    display: flex;
    flex-direction: column;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 12px;
    /* New: Prominent Yellow Border Top */
    border-top: 8px solid var(--brand-yellow);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.patient-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Icon Styling (Centered, Green Circle) */
.patient-icon {
    width: 50px;
    height: 50px;
    background-color: var(--brand-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0 auto 15px;
    /* Center icon above text */
}

/* Text Content */
.patient-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 5px 0;
}

.patient-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.4;
    margin: 0;
}

.section-title:after {
    display: block;
}

.service-feature-block .section-title:after {
    display: none;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .who-helps-section .container {
        padding: 0 0;
    }
}

@media (max-width: 992px) {
    .patient-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablet */
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .who-helps-section {
        padding: 4rem 2rem;
    }

    .who-helps-section .container {
        padding: 0 0;
    }
}

@media (max-width: 640px) {
    .who-helps-section {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .patient-grid {
        grid-template-columns: 1fr;
        /* Single column on mobile */
    }

    .patient-item.empty-placeholder {
        display: none;
    }
}