﻿.treatment-detail-section {
    padding: 3.5rem 0 2.5rem;
    background: #f7fafc;
}

.treatment-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 2rem;
    align-items: start;
}

.treatment-main-content {
    min-width: 0;
    padding: 2.5rem;
    border: 1px solid #dce5ef;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(25, 53, 87, 0.06);
}

.service-text > div:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 1.25rem;
    border-radius: 12px;
    background: #fbe5e5;
}

.service-text > div:first-child img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.service-text h1,
.service-text h2 {
    color: #0B2D4D;
    line-height: 1.2;
}

.service-text h1 {
    margin: 0 0 1.25rem;
    font-size: 2.2rem;
}

.service-text h2 {
    margin: 2rem 0 0.85rem;
    padding-left: 0.85rem;
    border-left: 3px solid #C62828;
    font-size: 1.45rem;
}

.service-text p,
.service-text li {
    color: #526174;
    font-size: 1rem;
    line-height: 1.75;
}

.service-text p {
    margin-bottom: 1rem;
}

.service-text ul {
    margin: 0 0 1.25rem;
    padding-left: 1.35rem;
}

.service-text li {
    margin-bottom: 0.55rem;
}

.treatment-sidebar {
    position: sticky;
    top: 106px;
}

.treatment-sidebar-title {
    margin: 0 0 0.85rem;
    color: #0B2D4D;
    font-size: 1.05rem;
    font-weight: 800;
}

.treatment-sidebar .list-group {
    display: grid;
    gap: 0.55rem;
    border: 0;
}

.treatment-sidebar .list-group-item {
    border: 1px solid #dce5ef;
    border-radius: 4px;
    background: #fff;
}

.treatment-sidebar .list-group-item a {
    display: block;
    color: #40516a;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
}

.treatment-sidebar .list-group-item:hover,
.treatment-sidebar .list-group-item:focus-within {
    border-color: #C62828;
    background: #fdf1f1;
}

.treatment-sidebar .list-group-item:hover a,
.treatment-sidebar .list-group-item:focus-within a {
    color: #C62828;
}

.treatment-sidebar-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 44px;
    margin-top: 1rem;
    padding: 0.65rem 0.8rem;
    border-radius: 4px;
    background: #0B2D4D;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

.treatment-sidebar-cta:hover {
    background: #061d32;
    color: #fff;
}

.treatment-cta-section {
    padding: 2.5rem 0 3.5rem;
    background: #f7fafc;
}

.treatment-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 2.25rem;
    border-radius: 8px;
    background: #0B2D4D;
    color: #fff;
}

.treatment-cta-kicker {
    margin: 0 0 0.4rem;
    color: #f4b8b8;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.treatment-cta h2 {
    margin: 0 0 0.5rem;
    font-size: 1.55rem;
    line-height: 1.25;
}

.treatment-cta p:not(.treatment-cta-kicker) {
    max-width: 650px;
    margin: 0;
    color: #e2edf7;
    line-height: 1.6;
}

.treatment-cta a {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    gap: 0.5rem;
    min-height: 44px;
    padding: 0.65rem 1rem;
    border-radius: 4px;
    background: #fff;
    color: #0B2D4D;
    font-weight: 800;
    text-decoration: none;
}

.treatment-cta a:hover {
    background: #fbe5e5;
}

@media (max-width: 991.98px) {
    .treatment-detail-section {
        padding: 2.5rem 0 1.5rem;
    }

    .treatment-detail-layout {
        grid-template-columns: 1fr;
    }

    .treatment-sidebar {
        position: static;
    }

    .treatment-sidebar .list-group {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .treatment-main-content {
        padding: 1.35rem;
    }

    .service-text h1 {
        font-size: 1.85rem;
    }

    .service-text h2 {
        font-size: 1.25rem;
    }

    .treatment-sidebar .list-group {
        grid-template-columns: 1fr;
    }

    .treatment-cta {
        display: block;
        padding: 1.5rem;
    }

    .treatment-cta a {
        margin-top: 1.25rem;
    }
}

