.conditions-treated-section-neuro {
    padding: 60px 20px;
    text-align: center;
}

.conditions-treated-section-neuro h2 {
    color: #0056b3; /* Theme color */
    margin-bottom: 20px;
}

.conditions-treated-section-neuro ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.conditions-treated-section-neuro li {
    background-color: #e9f7ff; /* Light theme color */
    color: #0056b3;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

/* Conditions We Treat Section (adapted from key-benefits-section) */
.neuro-conditions-treated {
    padding: 6rem 2rem;
    background: var(--gradient-bg);
}

.neuro-conditions-treated .benefits-layout-grid {
    display: flex;
    gap: 50px;
    align-items: start;
    flex-direction: column;
}

.neuro-conditions-treated .section-header-left {
    text-align: left;
    padding-right: 0px;
}

.neuro-conditions-treated .section-title-large {
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    width: 100%;
}

.neuro-conditions-treated .highlight-yellow {
    color: var(--brand-yellow);
}

.neuro-conditions-treated .section-subtitle-left {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 400;
    margin-top: 15px;
    max-width: 660px;
    width: 100%;
}

.neuro-conditions-treated .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
}

.neuro-conditions-treated .benefit-item {
    background-color: var(--light-bg);
    padding: 40px 24px 24px;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
}

.neuro-conditions-treated .benefit-item i {
    color: #fff;
    font-size: 1.6rem;
}

.neuro-conditions-treated .benefit-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.neuro-conditions-treated .benefit-icon-wrapper {
    width: 84px;
    height: 84px;
    background-color: var(--brand-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 146, 68, 0.18);
    transition: var(--transition);
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 0;
}

.neuro-conditions-treated .benefit-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 18px 0 10px 0;
}

.neuro-conditions-treated .benefit-text p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.neuro-conditions-treated .container {
    display: block;
    margin: auto;
}

@media (max-width: 768px) {
    .neuro-conditions-treated .section-subtitle-left {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .neuro-conditions-treated .benefits-layout-grid {
        gap: 40px;
        flex-direction: column;
        align-items: center;
    }

    .neuro-conditions-treated .section-header-left {
        text-align: center;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .neuro-conditions-treated .section-title-large {
        text-align: center;
    }

    .neuro-conditions-treated .section-subtitle-left {
        text-align: center;
    }
}


@media (max-width: 768px) {
    .neuro-conditions-treated .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .neuro-conditions-treated .benefit-item {
        padding: 28px 18px 18px;
    }

    .neuro-conditions-treated .benefit-icon-wrapper {
        width: 64px;
        height: 64px;
        top: -32px;
        transform: translate(-50%, 0);
    }

    .neuro-conditions-treated {
        padding: 4rem 2rem;
    }
}

@media (max-width: 640px) {
    .neuro-conditions-treated .container {
        padding: 0 1.5rem;
    }

    .neuro-conditions-treated .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px 30px;
    }
}

@media (max-width: 576px) {
    .neuro-conditions-treated {
        padding: 3rem 1.5rem;
    }

    .neuro-conditions-treated .benefit-icon-wrapper {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }
}

/* Desktop: layout header left, cards right */
@media (min-width: 993px) {
    .neuro-conditions-treated .benefits-layout-grid {
        flex-direction: column;
        align-items: center;
    }

    .neuro-conditions-treated .section-header-left {
        flex: 0 0 38%;
        text-align: left;
        padding-right: 0px;
        margin-bottom: 50px;
    }

    .neuro-conditions-treated .section-title-large {
        text-align: center;
    }

    .neuro-conditions-treated .section-subtitle-left {
        text-align: center;
        margin: 15px 0 0 0;
    }

    .neuro-conditions-treated .benefits-grid {
        flex: 1 1 62%;
        grid-template-columns: repeat(3, 1fr);
    }
}
