:root {
    --brand-primary: #2F5D50;
    --brand-primary-dark: #264b41;
    --brand-secondary: #6B8E23;
    --brand-accent: #E07A5F;
    --brand-sand: #F4EDE4;
    --brand-soft: #f8f5ef;
    --brand-light: #ffffff;
    --text-dark: #24312d;
    --text-muted: #6f746f;
    --border-light: #E5E5E5;
    --shadow-soft: 0 8px 24px rgba(36, 49, 45, 0.08);
    --shadow-hover: 0 12px 30px rgba(36, 49, 45, 0.14);
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
}

body {
    color: var(--text-dark);
    background: #ffffff;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

a {
    color: var(--brand-primary);
    transition: all 0.2s ease;
}

a:hover {
    color: var(--brand-accent);
    text-decoration: none;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.lead {
    color: var(--text-muted);
    font-size: 1.25rem;
}

.container-custom {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Algemene knoppen */
.btn-primary {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
    border-radius: 0.75rem;
    font-weight: 600;
    padding: 0.65rem 1rem;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--brand-primary-dark);
    border-color: var(--brand-primary-dark);
}

.btn-outline-primary {
    color: var(--brand-primary);
    border-color: var(--brand-primary);
    border-radius: 0.75rem;
    font-weight: 600;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 10px rgba(36, 49, 45, 0.04);
    padding: 0.65rem 0;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.site-brand {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    line-height: 1.05;
    margin: 0;
    flex-shrink: 0;
}

.site-brand-main {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.site-brand-sub {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 0.15rem;
}

.site-nav-collapse {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.site-header .navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.7rem 0.85rem;
    border-radius: 0.65rem;
    white-space: nowrap;
}

.site-header .navbar-nav .nav-link:hover, .site-header .navbar-nav .nav-link:focus {
    color: var(--brand-primary);
    background: #f2f5f2;
}

.header-search {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 0;
    flex-shrink: 0;
}

.header-search .form-control {
    width: 320px;
    max-width: 100%;
    height: 46px;
    border-radius: 0.8rem;
    border: 1px solid var(--border-light);
    box-shadow: none;
}

.header-search .form-control:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 0.2rem rgba(47, 93, 80, 0.12);
}

.header-search .btn {
    height: 46px;
    border-radius: 0.8rem;
    padding-left: 1rem;
    padding-right: 1rem;
    white-space: nowrap;
}

.navbar-toggler {
    padding: 0.35rem 0.55rem;
    border-radius: 0.65rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(47, 93, 80, 0.12);
}

/* HERO */
.home-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f7f3ec 0%, #f4ede4 58%, #fbf8f3 100%);
    border: 1px solid var(--border-light);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(36, 49, 45, 0.06);
}

.home-hero::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 220px;
    height: 220px;
    background: rgba(107, 142, 35, 0.10);
    border-radius: 50%;
}

.home-hero::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 180px;
    height: 180px;
    background: rgba(224, 122, 95, 0.10);
    border-radius: 50%;
}

.home-hero>.row {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
}

.hero-eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(47, 93, 80, 0.10);
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 0.95rem;
}

.hero-lead {
    max-width: 640px;
    margin-bottom: 0;
}

.hero-search .input-group {
    box-shadow: 0 10px 20px rgba(36, 49, 45, 0.06);
    border-radius: 1rem;
    overflow: hidden;
}

.hero-search .form-control {
    border: 1px solid var(--border-light);
    border-right: 0;
    min-height: 60px;
    font-size: 1.05rem;
    padding-left: 1rem;
}

.hero-search .form-control:focus {
    border-color: var(--brand-primary);
    box-shadow: none;
}

.hero-search .btn {
    min-height: 60px;
    border-radius: 0;
    font-weight: 700;
}

.hero-quicklinks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
}

.hero-quicklinks-label {
    color: var(--text-muted);
    font-weight: 600;
    margin-right: 0.15rem;
}

.hero-quicklinks a {
    display: inline-block;
    padding: 0.55rem 0.9rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border-light);
    border-radius: 999px;
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(36, 49, 45, 0.04);
}

.hero-quicklinks a:hover {
    color: var(--brand-accent);
    border-color: rgba(224, 122, 95, 0.35);
    background: #ffffff;
}

.hero-highlight-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border-light);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 12px 26px rgba(36, 49, 45, 0.08);
}

.hero-highlight-image-wrap {
    height: 220px;
    overflow: hidden;
}

.hero-highlight-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-highlight-body {
    padding: 1.25rem 1.25rem 1.4rem;
}

.hero-highlight-badge {
    display: inline-block;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #8a4e3d;
    background: rgba(224, 122, 95, 0.18);
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
}

.hero-highlight-title {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.hero-highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-highlight-list li+li {
    margin-top: 0.7rem;
}

.hero-highlight-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
}

.hero-highlight-list a:hover {
    color: var(--brand-accent);
}

/* Secties */
section {
    margin-bottom: 3.5rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.section-subtitle {
    color: var(--text-muted);
    margin-top: -0.5rem;
    margin-bottom: 1.25rem;
    max-width: 760px;
}

/* Algemene card basis */
.card {
    border-radius: var(--radius-lg);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
    transform: translateY(-3px);
}

/* Provincie cards */
.province-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
}

.province-card:hover {
    box-shadow: var(--shadow-hover);
}

.province-card-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    background: var(--brand-sand);
}

.province-card .card-body {
    padding: 1rem 1rem 1.1rem;
}

.province-card-title {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.2rem;
    font-size: 1.2rem;
}

.province-card:hover .province-card-title {
    color: var(--brand-primary);
}

.province-card .small, .province-card small {
    color: var(--text-muted) !important;
}

/* Categorie blokken */
.category-box {
    color: var(--text-dark);
    font-weight: 600;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 0.85rem;
    transition: all 0.2s ease;
    min-height: 100%;
    box-shadow: 0 3px 10px rgba(36, 49, 45, 0.03);
}

.category-box:hover {
    background: #fcfaf7;
    border-color: rgba(107, 142, 35, 0.45);
    color: var(--brand-primary);
    box-shadow: 0 8px 18px rgba(36, 49, 45, 0.07);
}

/* Camping cards */
.camping-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
}

.camping-card:hover {
    box-shadow: var(--shadow-hover);
}

.camping-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background: var(--brand-sand);
}

.camping-card .card-body {
    padding: 1rem;
}

.camping-card-title {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.camping-card:hover .camping-card-title {
    color: var(--brand-primary);
}

.camping-card .text-muted {
    color: var(--text-muted) !important;
}

/* SEO/content blok onderaan */
.home-seo-block {
    max-width: 1400px;
    background: var(--brand-sand);
    border: 1px solid #e7dbcb;
    border-radius: 1.25rem;
    padding: 2rem;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.home-seo-block ul {
    padding-left: 1.2rem;
}

.home-seo-block li {
    margin-bottom: 0.4rem;
}

/* Advertentieblok */
.ad-block {
    padding: 1rem 0;
}

/* Footer */
.site-footer {
    margin-top: 4rem;
    background: linear-gradient(180deg, #f8f4ee 0%, #f4ede4 100%);
    border-top: 1px solid #e7dbcb;
    color: var(--text-dark);
}

.footer-top {
    padding: 3rem 0 2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(36, 49, 45, 0.08);
    padding: 1rem 0 1.5rem;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-brand-link {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.footer-brand-link:hover {
    color: var(--brand-primary);
}

.footer-text {
    max-width: 32rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li+li {
    margin-top: 0.6rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--brand-primary);
}

.footer-copy, .footer-meta {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .header-search .form-control {
        width: 260px;
    }

    .site-header .navbar-nav .nav-link {
        padding-left: 0.65rem;
        padding-right: 0.65rem;
    }
}

@media (max-width: 991.98px) {
    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .site-header {
        padding: 0.5rem 0;
    }

    .site-header-inner {
        flex-wrap: wrap;
    }

    .site-nav-collapse {
        display: block;
        width: 100%;
    }

    .site-nav {
        display: block;
        margin-top: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .site-header .navbar-nav .nav-link {
        padding: 0.6rem 0;
        background: transparent;
    }

    .header-search {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        width: 100%;
    }

    .header-search .form-control {
        width: 100%;
    }

    .header-search .btn {
        width: 100%;
    }

    .home-hero {
        padding: 2rem 1.5rem;
    }

    .hero-highlight-image-wrap {
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .province-card-img {
        height: 130px;
    }

    .camping-card-img {
        height: 180px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .section-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-brand-main {
        font-size: 1.5rem;
    }

    .site-brand-sub {
        font-size: 0.8rem;
    }

    .home-hero {
        padding: 1.5rem 1rem;
        border-radius: 1rem;
    }

    .hero-search .input-group {
        display: block;
        box-shadow: none;
    }

    .hero-search .form-control {
        border-right: 1px solid var(--border-light);
        border-radius: 0.9rem;
        margin-bottom: 0.75rem;
        min-height: 54px;
    }

    .hero-search .btn {
        width: 100%;
        min-height: 52px;
        border-radius: 0.9rem;
    }

    .hero-highlight-image-wrap {
        height: 180px;
    }

    .hero-highlight-title {
        font-size: 1.15rem;
    }

    .footer-top {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-brand-link {
        font-size: 1.5rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

.category-hero {
    background: linear-gradient(135deg, #f7f3ec 0%, #f4ede4 100%);
    border: 1px solid var(--border-light);
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.category-intro p:last-child {
    margin-bottom: 0;
}

.category-sidebox {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 6px 18px rgba(36, 49, 45, 0.05);
}

.category-side-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-side-links li+li {
    margin-top: 0.75rem;
}

.category-side-links a {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
}

.category-side-links a:hover {
    color: var(--brand-primary);
}

.filter-sidebar {
    position: sticky;
    top: 100px;
}

.province-filter-list {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.province-filter-list .list-group-item {
    border: 0;
    border-bottom: 1px solid var(--border-light);
    padding: 0.9rem 1rem;
    color: var(--text-dark);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.province-filter-list .list-group-item:last-child {
    border-bottom: 0;
}

.province-filter-list .list-group-item:hover {
    background: #f8f5ef;
    color: var(--brand-primary);
}

.province-filter-list .list-group-item.active {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

.province-filter-list .badge {
    font-size: 0.8rem;
}

@media (max-width: 991.98px) {
    .filter-sidebar {
        position: static;
    }
}

.province-hero {
    background: linear-gradient(135deg, #f7f3ec 0%, #f4ede4 100%);
    border: 1px solid var(--border-light);
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.province-intro p:last-child {
    margin-bottom: 0;
}

.province-hero-image-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(36, 49, 45, 0.05);
}

.province-hero-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

@media (max-width: 991.98px) {
    .province-hero-image {
        height: 220px;
    }
}

.company-hero {
    background: linear-gradient(135deg, #f7f3ec 0%, #f4ede4 100%);
    border: 1px solid var(--border-light);
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.company-logo-wrap {
    max-width: 220px;
}

.company-logo {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 0.75rem;
    background: #fff;
    padding: 0.5rem;
    border: 1px solid var(--border-light);
}

.company-intro p:last-child {
    margin-bottom: 0;
}

.company-hero-image-card, .company-sidebox, .company-map-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(36, 49, 45, 0.05);
}

.company-hero-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.company-sidebox {
    padding: 1.25rem;
}

.company-address {
    color: var(--text-dark);
    line-height: 1.7;
}

.company-badges, .company-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.company-chip, .company-feature-pill {
    display: inline-block;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(36, 49, 45, 0.04);
}

.company-feature-group {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 6px 18px rgba(36, 49, 45, 0.05);
}

.company-map-card iframe {
    display: block;
    border: 0;
}

@media (max-width: 991.98px) {
    .company-hero-image {
        height: 240px;
    }
}

@media (max-width: 767.98px) {
    .company-hero {
        padding: 1.5rem 1rem;
    }

    .company-hero-image {
        height: 200px;
    }
}

.company-meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.company-meta-item {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(36, 49, 45, 0.04);
}

.company-meta-item a {
    color: var(--text-dark);
    text-decoration: none;
}

.company-meta-item a:hover {
    color: var(--brand-primary);
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: var(--text-muted);
    font-weight: 500;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--brand-primary);
}

.breadcrumb-item.active {
    color: var(--text-dark);
}

.company-hero .row {
    align-items: center;
}

.company-hero h1 {
    margin-bottom: 1rem;
    max-width: 12ch;
}

.company-intro {
    max-width: 720px;
    color: var(--text-dark);
}

.company-intro p {
    margin-bottom: 0.9rem;
}

.company-address strong {
    display: inline-block;
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
}

.company-chip {
    background: rgba(107, 142, 35, 0.12);
    border: 1px solid rgba(107, 142, 35, 0.25);
    color: var(--brand-primary-dark);
}

.province-list-hero {
    background: linear-gradient(135deg, #f7f3ec 0%, #f4ede4 100%);
    border: 1px solid var(--border-light);
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.province-list-intro {
    max-width: 760px;
}

.province-list-sidebox {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 6px 18px rgba(36, 49, 45, 0.05);
}

.province-list-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.province-list-links li+li {
    margin-top: 0.75rem;
}

.province-list-links a {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
}

.province-list-links a:hover {
    color: var(--brand-primary);
}

.category-list-hero {
    background: linear-gradient(135deg, #f7f3ec 0%, #f4ede4 100%);
    border: 1px solid var(--border-light);
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.category-list-intro {
    max-width: 760px;
}

.category-list-sidebox {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 6px 18px rgba(36, 49, 45, 0.05);
}

.category-list-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list-links li+li {
    margin-top: 0.75rem;
}

.category-list-links a {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
}

.category-list-links a:hover {
    color: var(--brand-primary);
}

.category-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.category-card-title {
    color: var(--text-dark);
    font-weight: 700;
}

.category-card:hover .category-card-title {
    color: var(--brand-primary);
}

.category-card-link {
    color: var(--brand-primary);
    font-weight: 600;
}

.blog-article-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.blog-article-content p:last-child {
    margin-bottom: 0;
}

.blog-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
}

.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4 {
    margin-top: 2rem;
}

.faq-accordion .accordion-item {
    border: 1px solid var(--border-light);
    border-radius: 0.9rem;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #fff;
    box-shadow: 0 4px 14px rgba(36, 49, 45, 0.04);
}

.faq-accordion .accordion-button {
    font-weight: 700;
    color: var(--text-dark);
    background: #fff;
    box-shadow: none;
    padding: 1rem 1.25rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--brand-sand);
    color: var(--brand-primary);
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--border-light);
}

.faq-accordion .accordion-body {
    color: var(--text-dark);
    line-height: 1.75;
    background: #fff;
}

.page-content {
    line-height: 1.8;
    font-size: 1.05rem;
}

.page-content p:last-child {
    margin-bottom: 0;
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
}

.page-content h2,
.page-content h3,
.page-content h4 {
    margin-top: 2rem;
}

.page-content ul,
.page-content ol {
    padding-left: 1.25rem;
}