*{ margin: 0px; padding: 0px;}

:root {
    --green:     #104b47;
    --gold:      #c9a227;
    --white:     #ffffff;
    --text-dark: #2a2a2a;
    --text-mid:  #555555;
    --text-light:#777777;
    --bg-light:  #f8f5f1;
    --border:    #e8e0d8;
    
    --color-primary:        #1a3c5e;   /* Deep navy — headings, borders */
    --color-accent:         #b5934a;   /* Warm gold — CTA buttons, highlights */
    --color-accent-dark:    #8f7035;   /* Darker gold — button hover */
    --color-text:           #2c2c2c;   /* Main body text */
    --color-text-light:     #5a5a5a;   /* Secondary / muted text */
    --color-bg:             #ffffff;   /* Page background */
    --color-bg-soft:        #f7f5f2;   /* Alternate section background */
    --color-border:         #e0dbd2;   /* Table & divider borders */
    --color-breadcrumb-bg:  #f0ede8;   /* Breadcrumb bar background */
    --green: #104b47;
    --teal-pale: #f0faf9;
    --teal: #1e7d78;
    --white: #ffffff;

    --font-heading:         'Lora', Georgia, serif;
    --font-body:            'Open Sans', Arial, sans-serif;

    --container-max-width:  auto;
    --sidebar-width:        340px;
    --gap:                  40px;
    --section-gap:          48px;
    --border-radius:        6px;
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;
    
    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    
    --shadow-sm:  0 2px 8px rgba(15,25,35,.06);
    --shadow-md:  0 8px 32px rgba(15,25,35,.10);
    --shadow-lg:  0 20px 60px rgba(15,25,35,.14);
    
    --max-w: 900px;
    --gutter: clamp(20px, 5vw, 60px);
}


/* HERO BANNER */
.cat-hero {
    position: relative;
    height: 260px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
}

.cat-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.cat-hero-title {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--white);
    text-transform: uppercase;
    margin: 0;
}

/* BREADCRUMB */
.cat-breadcrumb {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 13px;
    color: var(--text-mid);
}

.breadcrumb-list li { display: flex; align-items: center; gap: 8px; margin: 0px; }

.breadcrumb-list a {
    color: var(--green);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-list a:hover { color: var(--gold); }

.breadcrumb-list .fa { font-size: 11px; color: #bbb; }

/* Current page — not a link */
.breadcrumb-list [aria-current="page"] {
    color: var(--text-light);
    font-weight: 500;
}

    /* RESET & BASE */
    
    *, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-body);
        font-size: 16px;
        line-height: 1.75;
        color: var(--color-text);
        background-color: var(--color-bg);
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    a {
        color: var(--color-primary);
        text-decoration: none;
    }

    ul, ol {
        padding-left: 1.4em;
    }

    li {
        margin-bottom: 6px;
    }


    /* CONTAINER  (.container)
       Reused in breadcrumb, main layout, and any future sections. */
    .container-custom {
        max-width: var(--container-max-width);
        margin: 0 40px;
        padding: 0 0px;
    }

    /* PAGE LAYOUT  (.page-layout, .content-col, .sidebar-col)
       Two-column layout: content left, sidebar right.
       Sidebar is fixed-width; content fills the remaining space. */
    .page-layout {
        display: flex;
        gap: var(--gap);
        padding: 48px 0 25px;
    }

    .content-col {
        flex: 1 1 0;
        min-width: 0; /* prevents flex blowout */
    }

    .sidebar-col {
        flex: 0 0 var(--sidebar-width);
        width: var(--sidebar-width);
    }


    /* ARTICLE TYPOGRAPHY
       (.page-title, .page-intro, .section, .section-title,
        .subsection-title, .section-text, .section-list) */
    .page-title-new {
        font-family: var(--font-heading);
        font-size: 3rem;
        font-weight: 700;
        color: var(--green);
        line-height: 1.25;
        margin-bottom: 16px;
    }

    .page-intro {
        font-size: 1.5rem;
        color: var(--color-text);
        margin-bottom: 40px;
        border-left: 3px solid var(--color-accent);
        padding-left: 16px;
    }

    /* Each H2 block of content */
    .section {
        margin-bottom: var(--section-gap);
    }

    .section-title {
        font-family: var(--font-heading);
        font-size: 2.9rem;
        font-weight: 600;
        color: var(--green);
        margin-bottom: 14px;
        padding-bottom: 8px;
    }

    /* H3 sub-headings inside a section (e.g. step titles) */
    .subsection-title {
        font-family: var(--font-heading);
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--color-primary);
        margin: 20px 0 8px;
    }

    .section-text {
        color: var(--color-text);
        margin-bottom: 14px;
    }

    /* Generic list used across multiple sections */
    .section-list {
        margin-top: 8px;
        color: var(--color-text);
    }
    
    .areas-treated {
        list-style: circle !important;
    }

    .section-list li::marker {
        color: var(--color-accent);
    }


    /* TABLES  (.data-table)
       One reusable table class for ALL tables on the page.
       Quick Facts, Areas Treated, and Comparison all share this. */
    .table-wrapper {
        overflow-x: auto; /* horizontal scroll on small screens */
        max-width: 75%;
        margin: 14px 0 0;
        border-radius: var(--border-radius);
        border: 1px solid var(--color-border);
    }
    
    .table-wrapper-other {
        max-width: 100% !important;
    }

    .data-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 1.5rem;
        background-color: var(--color-bg);
    }

    .data-table thead th {
        background-color: var(--green);
        color: #ffffff;
        font-family: var(--font-heading);
        font-weight: 600;
        padding: 12px 16px;
        text-align: left;
        white-space: nowrap;
    }

    /* First column label cells in tbody (bold key column) */
    .data-table tbody td:first-child {
        font-weight: 600;
        color: var(--green);
        background-color: var(--color-bg-soft);
        white-space: nowrap;
    }

    .data-table tbody td {
        padding: 11px 16px;
        border-top: 1px solid var(--color-border);
        vertical-align: top;
    }

    /* Zebra striping for readability */
    .data-table tbody tr:nth-child(even) td:not(:first-child) {
        background-color: var(--color-bg-soft);
    }

    .data-table tbody tr:hover td {
        background-color: #eef4fa;
    }


    /* STEP BLOCKS  (.steps-wrapper, .step-block, .step-label)
       Used in "What to Expect During Your Xeomin Session" */
    .steps-wrapper {
        margin-top: 12px;
    }

    .step-block {
        display: flex;
        gap: 16px;
        margin-bottom: 20px;
    }

    .step-number {
        flex: 0 0 36px;
        width: 36px;
        height: 36px;
        background-color: var(--green);
        color: #ffffff;
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1.4rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 2px;
    }

    .step-body {
        flex: 1;
    }

    .step-label {
        font-family: var(--font-heading);
        font-weight: 600;
        color: var(--color-primary);
        font-size: 2rem;
        margin: 0px 0px 4px 0px;
    }


    /* HIGHLIGHT BOX  (.highlight-box)
       Used for the "Why Choose Us" section — stands out visually. */
    .highlight-box {
        background-color: var(--color-bg-soft);
        border-left: 4px solid var(--color-accent);
        border-radius: var(--border-radius);
        padding: 24px 28px;
        margin-top: 12px;
    }

    .highlight-box .section-list {
        margin-top: 0;
    }


    /* COST CALLOUT  (.cost-callout)
       Draws attention to the starting price. */
    .cost-callout {
        display: inline-block;
        background-color: var(--green);
        color: #ffffff;
        font-family: var(--font-heading);
        font-size: 1.4rem;
        font-weight: 700;
        padding: 10px 24px;
        border-radius: var(--border-radius);
        margin: 0px 0 16px;
        letter-spacing: 0.5px;
    }


    /* BOOKING CTA SECTION  (.booking-section)
       Final call-to-action at the bottom of the article. */
    .booking-section {
        background-color: var(--color-bg-soft);
        border: 1px solid var(--color-border);
        border-radius: var(--border-radius);
        padding: 28px 32px;
        margin-top: var(--section-gap);
    }

    .booking-section .section-title {
        border-bottom-color: var(--color-accent);
    }
    
     /* FAQ ACCORDION */
    .faq-list { margin-top: 28px; display: flex; flex-direction: column; gap: 2px; }
    details {
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      overflow: hidden;
      transition: box-shadow .2s;
    }
    
    .faq {
        font-family: var(--font-display);
        font-weight: 550;
        line-height: 1.2;
        color: var(--green);
        margin-bottom: 20px;
        font-size: 2.9rem !important;
    }
    
    details[open] { box-shadow: var(--shadow-sm); }
    summary {
      list-style: none;
      cursor: pointer;
      padding: 16px 20px;
      font-size: 15px;
      font-weight: 500;
      color: var(--ink);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      user-select: none;
      background: var(--white);
      transition: background .15s;
    }
    summary:hover { background: var(--teal-pale); }
    summary::-webkit-details-marker { display: none; }
    .faq-icon {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--teal-light);
      color: var(--teal);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 300;
      line-height: 1;
      transition: transform .2s, background .2s;
    }
    details[open] .faq-icon {
      transform: rotate(45deg);
      background: var(--teal);
      color: var(--white);
    }
    .faq-answer {
      padding: 4px 20px 18px;
      font-size: 14.5px;
      color: var(--ink-soft);
      line-height: 1.8;
      background: var(--white);
    }

/* Sticky so sidebar stays in view as user scrolls the long text */
.cat-sidebar {
    position: sticky;
    top: 100px; /* offset = header height (~172px topbar+mid+navbar) */
}

/* Category image */
.cat-image-wrap {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 16px rgba(0,0,0,0.10);
    margin-bottom: 25px;
}

.cat-main-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.cat-image-wrap:hover .cat-main-image { transform: scale(1.03); }

/* Consultation box */
.cat-consult-box {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-left: 4px solid var(--green);
    border-radius: 4px;
    padding: 24px 20px;
    text-align: center;
}

.cat-consult-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.cat-consult-sub {
    font-size: 13.5px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Primary CTA — Book Appointment */
.cat-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    background: var(--green);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--green);
    margin-bottom: 12px;
    transition: background 0.2s, color 0.2s;
}

.cat-cta-btn:hover {
    background: transparent;
    color: var(--green);
}

/* Secondary CTA — Phone call */
.cat-cta-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 20px;
    background: transparent;
    color: var(--green);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: 2px solid var(--green);
    transition: background 0.2s, color 0.2s;
}

.cat-cta-call:hover {
    background: var(--green);
    color: var(--white);
}

/*Responsive*/

    @media (max-width: 900px) {
        .page-layout {
            flex-direction: column;
            padding: 32px 0 48px;
        }

        .sidebar-col {
            width: 100%;
            flex: none;
        }

        .cat-sidebar {
            position: static;
        }
    }

    @media (max-width: 600px) {
        .page-title {
            font-size: 1.55rem;
        }

        .section-title {
            font-size: 1.15rem;
        }

        .cat-consult-box {
            padding: 22px 18px;
        }

        .booking-section {
            padding: 22px 18px;
        }
    }
    
/* On tablet and below, stack into single column */
@media  (min-width: 765px) and (max-width: 1150px) {
    .page-layout {flex-direction: column;padding: 32px 0 48px;}
    .cat-media-col { margin: 0px 0px 0px 0px; }
    .cat-sidebar { display: flex; justify-content: center; align-items: center; }
    .cat-image-wrap { margin-bottom: 0px; margin-right: 30px; }
    .cat-consult-box {height: 320px; padding: 65px 20px;}
}

@media (max-width: 764px) {
    .cat-sidebar { display: block; justify-content: center; align-items: center; }
    .cat-image-wrap { margin-bottom: 20px; }
    .cat-hero { height: 180px; }
    .cat-hero-title { font-size: 26px; letter-spacing: 2px; }
}
