﻿h1, h2, h3 {
    font-size: 22px !important;
}

.keyword {
    color: var(--accent);
    font-weight: 700;
}

:root {
    --accent: #0aa7d6;
    --muted: #6f8086;
    --text: #16373a;
    --bg: #f6fbfb;
    --card: #fff;
    --max-width: 1200px;
    --container-pad: 20px;
}

h1, h2, h3, h4 {
    font-size: 22px !important;
}
/* PAGE RESET */
* {
    box-sizing: border-box
}

html, body {
    height: 100%;
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Quicksand,system-ui,-apple-system,Segoe UI,Roboto,Arial;
}

a {
    color: var(--accent);
    text-decoration: none
}


p {
    margin: 0 0 12px 0;
    color: #254
}

/* CONTAINER */
.page-wrap {
    max-width: var(--max-width);
    margin: 18px auto;
    padding: var(--container-pad);
}

/* HEADER / TITLE */
.page-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px
}

.brand {
    font-weight: 700;
    font-size: 20px;
    color: var(--accent)
}

.page-meta {
    color: var(--muted);
    font-size: 14px
}

/* HERO GRID */
.hero {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 20px;
    align-items: start;
}

/* ARTICLE CARD */
article.card {
    background: var(--card);
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(6,20,30,0.06);
}

/* ASIDE */
aside.card {
    background: var(--card);
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(6,20,30,0.06);
    height: fit-content;
}

.aside-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px
}

.aside-meta {
    font-weight: 700;
    color: #0a3940;
    margin-bottom: 8px
}

.aside-cta {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    margin-top: 12px
}

.btn {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    text-decoration: none
}

.btn-primary {
    background: var(--accent)
}

.btn-dark {
    background: #444
}

/* TWO-COLUMN BLOCK INSIDE ARTICLE */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 12px
}

    .two-col .box {
        background: #f5fbfb;
        padding: 14px;
        border-radius: 8px;
        color: #254
    }

/* IMAGE GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-top: 12px
}

    .gallery a {
        display: block;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0,0,0,0.06)
    }

    .gallery img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block
    }

/* FAQ ACCORDION */
.faq {
    margin-top: 18px
}

.faq-item {
    border-top: 1px solid rgba(6,20,24,0.04)
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 6px;
    cursor: pointer;
    border: 0;
    background: none;
    width: 100%;
    text-align: left;
    font-weight: 700;
    color: #0b3c43
}

.toggle {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: rgba(10,167,214,0.06);
    color: var(--accent);
    font-weight: 800;
    transition: transform .2s
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .32s ease,padding .32s ease;
    padding: 0 6px;
    color: #28494a
}

.faq-item.open .toggle {
    transform: rotate(45deg);
    background: var(--accent);
    color: #fff
}

.faq-item.open .faq-a {
    padding: 12px 6px 16px;
    max-height: 420px
}

/* SMALL HELPERS */
ul.check {
    margin: 0 0 12px 18px
}

.muted {
    color: var(--muted)
}

.keyword {
    color: var(--accent);
    font-weight: 700
}

/* RESPONSIVE */
@media (max-width:1024px) {
    .hero {
        grid-template-columns: 1fr 300px
    }

    .gallery {
        grid-template-columns: repeat(2,1fr)
    }
}

@media (max-width:880px) {
    .hero {
        grid-template-columns: 1fr
    }

    .aside-cta {
        justify-content: flex-start
    }

    .gallery {
        grid-template-columns: 1fr 1fr
    }

    .two-col {
        grid-template-columns: 1fr
    }
}

@media (max-width:480px) {
    .gallery {
        grid-template-columns: 1fr
    }

    h1 {
        font-size: 20px
    }

    .page-top {
        gap: 8px
    }
}

:root {
    --accent: #0aa7d6;
    --muted: #6f8086;
    --text: #16373a;
    --bg: #f6fbfb;
    --card: #fff;
    --max-width: 1200px;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Quicksand,system-ui,-apple-system,Segoe UI,Roboto,Arial;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.45;
}

/* TOP FULL-WIDTH BANNER */
.top-banner {
    width: 100%;
    min-height: 220px;
    display: grid;
    place-items: center;
    text-align: left;
    padding: 48px 20px;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}
    /* Use a soft gradient + background image */
    .top-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(246,251,fb,0.6));
        z-index: 1;
        pointer-events: none;
    }

    .top-banner .bg {
        position: absolute;
        inset: 0;
        background-position: center;
        background-size: cover;
        filter: blur(6px) saturate(95%) brightness(1.05);
        opacity: 0.45;
        z-index: 0;
    }

    .top-banner .inner {
        position: relative;
        z-index: 2;
        max-width: var(--max-width);
        width: 100%;
        margin: 0 auto;
        display: flex;
        gap: 20px;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
    }

.brand {
    color: var(--accent);
    font-weight: 700;
    font-size: 20px;
}

.hero-title {
    font-size: 20px;
    margin: 0 0 6px;
    color: var(--text);
    font-weight: 700;
}

.hero-sub {
    color: var(--muted);
    font-size: 14px;
}

/* MAIN LAYOUT (narrow centered) */
.page-wrap {
    max-width: var(--max-width);
    margin: 18px auto;
    padding: 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 20px;
    align-items: start;
}

article.card, aside.card {
    background: var(--card);
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(6,20,30,0.06);
}

/* SECONDARY LIGHT BANNER / GALLERY (click to open popup) */
.light-banner {
    background: #f9fcfd;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 6px 18px rgba(6,20,30,0.04);
}

.thumbs {
    display: flex;
    gap: 10px;
    align-items: center;
}

.thumb {
    width: 210px;
    height: 56px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(6,20,30,0.06);
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    border: 1px solid rgba(6,20,30,0.03);
}

    .thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .35s;
    }

    .thumb:hover img {
        transform: scale(1.06);
    }

/* modal / lightbox */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    z-index: 1200;
    background: rgba(6,20,24,0.6);
    padding: 20px;
}

    .modal.open {
        display: grid;
    }

.modal-card {
    max-width: 1100px;
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(6,20,30,0.6);
    display: flex;
    gap: 0;
    align-items: stretch;
}

.modal-img {
    flex: 1 1 60%;
    min-height: 320px;
    background-position: center;
    background-size: cover;
}

.modal-info {
    width: 360px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-close {
    margin-left: auto;
    background: none;
    border: 0;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    color: var(--muted);
}

/* ASIDE: service image (third image) + minimal CTA */
.service-card {
    text-align: center;
    padding: 16px;
    border-radius: 8px;
    background: linear-gradient(180deg,#fff,#fbffff);
}

.service-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 10px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(6,20,30,0.08);
}

    .service-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* Minimal CTA button (third image drives styling) */
.cta-minimal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 700;
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(6,20,30,0.06);
    transition: all .18s;
    cursor: pointer;
}

    .cta-minimal .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 4px 12px rgba(10,167,214,0.24);
    }

    .cta-minimal:hover {
        transform: translateY(-3px);
        border-color: rgba(10,167,214,0.18);
        box-shadow: 0 10px 30px rgba(10,167,214,0.06);
    }

/* Responsive */
@media (max-width:1024px) {
    .hero-grid {
        grid-template-columns: 1fr 300px;
    }

    .thumb {
        width: 170px;
        height: 56px;
    }

    .modal-info {
        display: none;
    }
}

@media (max-width:880px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .thumb {
        width: 100%;
        height: 140px;
    }

    .top-banner {
        min-height: 180px;
        padding: 28px 12px;
    }

        .top-banner .inner {
            flex-direction: column;
            align-items: flex-start;
        }
}



/* Section-local styles for safety (scoped) */
#treatment-section {
    font-family: Quicksand, system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
    color: #16373a;
}

    #treatment-section .container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 18px;
    }

    #treatment-section h2 {
        font-size: 22px;
        margin: 6px 0 12px;
        color: #0b3c43;
        font-weight: 700;
    }

    #treatment-section .lead {
        color: #6f8086;
        margin-bottom: 14px;
    }

/* Gallery + info split */
.t-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 20px;
    align-items: start;
}

.t-card {
    background: #fff;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 8px 30px rgba(6,20,30,0.06);
}

.gallery-wrap {
    background: #f8feff;
    border-radius: 10px;
    padding: 14px;
}

.gallery-head {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

    .gallery-head .meta {
        color: #586a6e;
        font-size: 13px;
        line-height: 1.3;
        min-width: 160px;
    }

.thumbs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.thumb {
    width: calc(33.333% - 8px);
    min-width: 130px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(6,20,30,0.03);
    box-shadow: 0 8px 20px rgba(6,20,30,0.04);
    background: #fff;
    display: inline-block;
}

    .thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .thumb .label {
        position: absolute;
        left: 8px;
        bottom: 6px;
        color: #fff;
        font-size: 12px;
        background: rgba(0,0,0,0.35);
        padding: 4px 6px;
        border-radius: 4px;
    }

/* Keyword content blocks */
.benefits {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.benefit {
    background: #f5fbfb;
    padding: 12px;
    border-radius: 8px;
    flex: 1 1 200px;
    min-width: 160px;
    color: #254;
}

.keywords {
    margin-top: 12px;
    color: #0a5660;
    font-weight: 700;
    font-size: 14px;
}

/* CTA area */
.cta-row {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
}

.btn-primary {
    background: #0aa7d6;
    color: #fff;
}

.btn-dark {
    background: #333;
    color: #fff;
}

/* FAQ */
.mini-faq {
    margin-top: 16px;
    border-top: 1px solid rgba(6,20,30,0.04);
    padding-top: 12px;
}

.faq-item {
    margin-bottom: 10px;
}

.faq-q {
    font-weight: 700;
    color: #0b3c43;
    font-size: 14px;
}

.faq-a {
    color: #466;
    font-size: 14px;
}

/* Modal */
.t-modal {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    z-index: 1200;
    background: rgba(6,20,24,0.6);
    padding: 16px;
}

    .t-modal.open {
        display: grid;
    }

    .t-modal .card {
        width: 100%;
        max-width: 1000px;
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        display: flex;
        gap: 0;
    }

    .t-modal .img {
        flex: 1;
        background-position: center;
        background-size: cover;
        min-height: 500px;
    }

    .t-modal .meta {
        width: 360px;
        padding: 18px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .t-modal .close {
        margin-left: auto;
        border: 0;
        background: none;
        font-weight: 700;
        cursor: pointer;
        color: #6f8086;
    }

/* Responsive */
@media (max-width:1024px) {
    .t-grid {
        grid-template-columns: 1fr 300px;
    }

    .thumb {
        width: calc(50% - 8px);
        height: 96px;
    }
}

@media (max-width:760px) {
    .t-grid {
        grid-template-columns: 1fr;
    }

    .thumb {
        width: 100%;
        height: 140px;
    }

    .t-modal .card {
        flex-direction: column;
    }

    .t-modal .meta {
        width: 100%;
    }
}



