/* =====================================================
   SERVICE PAGES — ISOLATED STYLES
   ===================================================== */

/* ---------- GLOBAL OVERRIDES (kill landing page bleed) ---------- */

.service-content p,
.service-content h2,
.service-content ul {
    max-width: 100%;
    margin: 0;
    text-align: left;
}

/* ---------- HERO ---------- */

.service-hero {
    padding: 140px 0 100px;
    text-align: center;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f7f7f7 100%
    );
}

.service-hero h1 {
    font-size: clamp(2.6rem, 5vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -1px;
}

.service-hero p {
    margin-top: 18px;
    font-size: 1.05rem;
    color: rgba(0, 0, 0, 0.6);
}

/* ---------- CONTENT WRAPPER ---------- */

.service-content {
    padding: 120px 0;
    background: #ffffff;
}

.service-content .container {
    max-width: 900px;
}

/* ---------- BLOCKS ---------- */

.service-block {
    margin-bottom: 100px;
}

.service-block:last-child {
    margin-bottom: 0;
}

/* ---------- HEADINGS ---------- */

.service-block h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
}

.service-block h2::after {
    content: "";
    display: block;
    width: 44px;
    height: 3px;
    background: var(--accent);
    margin-top: 12px;
    border-radius: 2px;
}

/* ---------- PARAGRAPHS ---------- */

.service-block p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #333;
}

/* ---------- LISTS ---------- */

.service-block ul {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.service-block ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin-bottom: 14px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.service-block ul li::before {
    content: "•";
    color: var(--accent);
    font-size: 1.4rem;
    line-height: 1;
}


/* ---------- PRICE BLOCK ---------- */

.service-price-block {
    margin-top: 40px;
    padding: 40px;
    border-radius: 16px;
    background: #f7f7f7;

    max-width: 420px;
}

.service-price-block h2 {
    margin-bottom: 16px;
}

.service-price-block h2::after {
    margin-top: 10px;
}


.service-price {
    font-size: 2rem;
    font-weight: 800;
    margin: 18px 0 26px;
}

/* ---------- CTA BUTTON ---------- */

.service-price-block .btn-primary {
    width: fit-content;
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 768px) {
    .service-hero {
        padding: 120px 0 80px;
    }

    .service-content {
        padding: 100px 0;
    }

    .service-block {
        margin-bottom: 80px;
    }
}

/* ==== FORCE LEFT-ALIGNED UNDERLINES ON SERVICE PAGES ==== */

.service-content h2::after {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
