/* ===================================
   Style - speedboot-verzekeren.nl
   2026.01.18 v0.3
   =================================== */
:root {
    /* Primary Colors */
    --brand-primary: #d4a54a;       /* Deep Navy - trust, stability */
    --brand-primary-dark: #0f2840;     /* Darker navy for hover */
    --brand-primary-light: #2d5a8a;    /* Lighter navy */
    
    /* Secondary Colors */
    --brand-secondary: #2a6b7c;        /* Petrol/Teal - nautical, professional */
    --brand-secondary-dark: #1d4d5a;
    --brand-secondary-light: #3d8a9d;
    
    /* Accent */
    --brand-accent: #d4a54a;           /* Warm amber - CTAs, highlights */
    --brand-accent-dark: #b8903d;
    --brand-accent-light: #e8c078;
    
    /* Neutrals */
    --neutral-50: #f8f9fa;             /* Off-white background */
    --neutral-100: #f1f3f5;
    --neutral-200: #e9ecef;
    --neutral-300: #dee2e6;
    --neutral-400: #adb5bd;
    --neutral-500: #6c757d;
    --neutral-600: #495057;
    --neutral-700: #343a40;
    --neutral-800: #212529;
    --neutral-900: #0d1117;            /* Near-black */
    
    /* Brand Neutrals (alias for consistency) */
    --brand-neutral-50: #f8f9fa;
    --brand-neutral-100: #f1f3f5;
    --brand-neutral-200: #e9ecef;
    --brand-neutral-300: #dee2e6;
    --brand-neutral-400: #adb5bd;
    --brand-neutral-500: #6c757d;
    --brand-neutral-600: #495057;
    --brand-neutral-700: #343a40;
    --brand-neutral-800: #212529;
    
    /* Status Colors */
    --status-success: #2e7d5a;
    --status-warning: #c9a227;
    --status-error: #b83d3d;
    --status-info: #3d7ab8;
    
    /* Typography */
    --font-heading: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(26, 58, 92, 0.06);
    --shadow-md: 0 4px 12px rgba(26, 58, 92, 0.08);
    --shadow-lg: 0 8px 24px rgba(26, 58, 92, 0.12);
    --shadow-xl: 0 16px 48px rgba(26, 58, 92, 0.16);
}

/* ===================================
   Base Styles
   =================================== */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--neutral-700);
    background-color: var(--neutral-50);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--brand-accent);
    line-height: 1.25;
    margin-bottom: var(--space-md);
}

h1 { font-size: clamp(2rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--brand-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--brand-secondary-dark);
}

a:focus-visible {
    outline: 3px solid var(--brand-accent);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* ===================================
   Navigation
   =================================== */
.navbar-brand-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: #0f2840; !important;
}

.navbar {
    background-color: #fff;
    box-shadow: var(--shadow-sm);
    padding: var(--space-md) 0;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--neutral-600);
    padding: var(--space-sm) var(--space-md) !important;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--brand-primary);
    background-color: var(--neutral-100);
}

.navbar-nav .nav-link:focus-visible {
    outline: 3px solid var(--brand-accent);
    outline-offset: 2px;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.btn:focus-visible {
    outline: 3px solid var(--brand-accent);
    outline-offset: 2px;
}

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

.btn-primary:hover {
    background-color: var(--brand-primary-dark);
    border-color: var(--brand-primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background-color: var(--brand-accent);
    border-color: var(--brand-accent);
    color: var(--neutral-900);
}

.btn-accent:hover {
    background-color: var(--brand-accent-dark);
    border-color: var(--brand-accent-dark);
    color: var(--neutral-900);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    background-color: transparent;
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

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

/* ===================================
   Hero Section
   =================================== */
.hero {
    /* Fallback gradient (shows while image loads or if image fails) */
    background-color: var(--brand-primary);
    background-image: 
        /* Dark overlay gradient - tuned for the golden hour speedboat image */
        linear-gradient(
            105deg,
            rgba(15, 40, 64, 0.88) 0%,
            rgba(15, 40, 64, 0.78) 30%,
            rgba(26, 58, 92, 0.55) 55%,
            rgba(26, 58, 92, 0.25) 75%,
            rgba(26, 58, 92, 0.1) 100%
        ),
        /* Hero image */
        url('/assets/img/speedboot-verzekeren-hero-illustratie-001.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding: var(--space-3xl) 0;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.heroPages {
    /* Fallback gradient (shows while image loads or if image fails) */
    background-color: var(--brand-primary);
    background-image: 
        /* Dark overlay gradient - tuned for the golden hour speedboat image */
        linear-gradient(
            105deg,
            rgba(15, 40, 64, 0.88) 0%,
            rgba(15, 40, 64, 0.78) 30%,
            rgba(26, 58, 92, 0.55) 55%,
            rgba(26, 58, 92, 0.25) 75%,
            rgba(26, 58, 92, 0.1) 100%
        ),
        /* Hero image */
        url('/assets/img/speedboot-verzekeren-hero-illustratie-002.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding: var(--space-3xl) 0;
    min-height: 220px;
    display: flex;
    align-items: center;
}

.heroArticles {
    /* Fallback gradient (shows while image loads or if image fails) */
    background-color: var(--brand-primary);
    background-image: 
        /* Dark overlay gradient - tuned for the water surface image */
        linear-gradient(
            105deg,
            rgba(15, 40, 64, 0.88) 0%,
            rgba(15, 40, 64, 0.78) 30%,
            rgba(26, 58, 92, 0.55) 55%,
            rgba(26, 58, 92, 0.25) 75%,
            rgba(26, 58, 92, 0.1) 100%
        ),
        /* Hero image */
        url('/assets/img/speedboot-verzekeren-hero-illustratie-002.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding: var(--space-3xl) 0;
    min-height: 300px;
    display: flex;
    align-items: center;
}

/* Bottom edge fade for smoother transition to next section */
.heroArticles::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--neutral-50) 0%, transparent 100%);
    pointer-events: none;
}

.heroArticles h1 {
    color: #fff;
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

/* Subtle animated wave pattern overlay (optional, adds depth) */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 Q25 5, 50 10 T100 10' fill='none' stroke='%23ffffff' stroke-width='0.5'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 100px 20px;
    opacity: 0.04;
    pointer-events: none;
}

/* Bottom edge fade for smoother transition to next section */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--neutral-50) 0%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: #fff;
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.heroPages h1 {
    color: #fff;
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    max-width: 540px;
    margin-bottom: var(--space-xl);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* Smaller hero for subpages */
.hero.hero-small {
    padding: 3rem 0 2.5rem;
    min-height: auto;
}

.hero.hero-small::after {
    height: 60px;
}

.hero.hero-small .hero-subtitle {
    margin-bottom: var(--space-lg);
}

/* Hero without image (gradient only) - for legal/info pages */
.hero.hero-gradient {
    background-image: 
        linear-gradient(
            135deg,
            var(--brand-primary) 0%,
            var(--brand-primary-light) 50%,
            var(--brand-secondary) 100%
        );
    min-height: auto;
    padding: 3rem 0 2.5rem;
}

.hero.hero-gradient::before {
    opacity: 0.06;
}

.hero.hero-gradient::after {
    height: 60px;
}

/* Responsive hero adjustments */
@media (max-width: 991.98px) {
    .hero {
        min-height: 450px;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 767.98px) {
    .hero {
        /* On mobile: stronger overlay for readability */
        background-image: 
            linear-gradient(
                to bottom,
                rgba(15, 40, 64, 0.85) 0%,
                rgba(15, 40, 64, 0.75) 40%,
                rgba(26, 58, 92, 0.6) 100%
            ),
            url('/assets/img/speedboot-verzekeren-hero-illustratie-001.webp');
        background-position: 65% center;
        min-height: 400px;
        padding: var(--space-2xl) 0;
    }
    
    .hero::after {
        height: 60px;
    }
    
    .hero.hero-small,
    .hero.hero-gradient {
        padding: 2rem 0 1.5rem;
    }
}

/* ===================================
   USP Cards
   =================================== */
.section-usp {
    padding: var(--space-3xl) 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title h2 {
    margin-bottom: var(--space-sm);
}

.section-title p {
    color: var(--neutral-500);
    max-width: 600px;
    margin: 0 auto;
}

.usp-card {
    background-color: var(--neutral-50);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    height: 100%;
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.usp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-secondary-light);
}

.usp-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-secondary-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.usp-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.usp-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.usp-card p {
    color: var(--neutral-600);
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
}

.usp-card a {
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.usp-card a i {
    transition: transform 0.2s ease;
}

.usp-card a:hover i {
    transform: translateX(4px);
}

/* Clickable USP cards */
.usp-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.usp-card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    color: inherit;
}

.usp-card-action {
    display: block;
    margin-top: 0.75rem;
    color: var(--brand-primary);
    font-weight: 500;
}

/* ===================================
   Checklist Section
   =================================== */
.section-checklist {
    padding: var(--space-3xl) 0;
    background-color: var(--neutral-100);
}

.checklist-content {
    max-width: 720px;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: var(--space-xl) 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--neutral-200);
}

.checklist li:last-child {
    border-bottom: none;
}

.checklist-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-secondary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checklist-icon i {
    font-size: 0.75rem;
    color: #fff;
}

/* ===================================
   Articles Section
   =================================== */
.section-articles {
    padding: var(--space-3xl) 0;
    background-color: #fff;
}

.article-card {
    background-color: var(--neutral-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.article-card-icon {
    padding: var(--space-lg);
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    text-align: center;
}

.article-card-icon i {
    font-size: 2rem;
    color: #fff;
}

.article-card-body {
    padding: var(--space-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-card-category {
    font-size: 0.8125rem;
    color: var(--brand-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-sm);
}

.article-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.article-card h3 a {
    color: var(--brand-primary);
}

.article-card h3 a:hover {
    color: var(--brand-secondary);
}

.article-card p {
    color: var(--neutral-600);
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.article-card-link {
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: auto;
}

.article-card-link i {
    transition: transform 0.2s ease;
}

.article-card-link:hover i {
    transform: translateX(4px);
}

/* Article card header/footer for article overview */
.article-card-header {
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
}

.article-category {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
}

.article-title {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.article-title a {
    color: var(--brand-primary);
    text-decoration: none;
}

.article-title a:hover {
    color: var(--brand-secondary);
}

.article-excerpt {
    color: var(--neutral-600);
    font-size: 0.9375rem;
    margin-bottom: 0;
    flex-grow: 1;
}

.article-card-footer {
    padding: var(--space-md) var(--space-lg);
    border-top: 1px solid var(--neutral-200);
    background-color: #fff;
}

.article-link {
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--brand-secondary);
}

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

.article-link i {
    transition: transform 0.2s ease;
}

.article-link:hover i {
    transform: translateX(4px);
}

/* ===================================
   Trust Section
   =================================== */
.section-trust {
    padding: var(--space-3xl) 0;
    background-color: var(--neutral-100);
}

.trust-box {
    background-color: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
}

.trust-item {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--neutral-200);
}

.trust-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.trust-item:first-child {
    padding-top: 0;
}

.trust-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon i {
    font-size: 1.25rem;
    color: #fff;
}

.trust-text h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.trust-text p {
    color: var(--neutral-600);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* ===================================
   FAQ Section
   =================================== */
.section-faq {
    padding: var(--space-3xl) 0;
    background-color: #fff;
    scroll-margin-top: 80px;
}

.section-faq-alt {
    background-color: var(--neutral-50);
}

.accordion-item {
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md) !important;
    margin-bottom: var(--space-md);
    overflow: hidden;
}

.accordion-button {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--brand-primary);
    background-color: #fff;
    padding: var(--space-lg);
}

.accordion-button:not(.collapsed) {
    background-color: var(--neutral-50);
    color: var(--brand-primary);
    box-shadow: none;
}

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

.accordion-body {
    padding: var(--space-lg);
    color: var(--neutral-600);
}

/* FAQ Navigation Pills */
.section-faq-nav {
    padding: 1.5rem 0;
    background-color: var(--neutral-50);
    border-bottom: 1px solid var(--neutral-200);
}

.section-faq-nav .nav-link {
    color: var(--neutral-600);
    background-color: var(--neutral-100);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.section-faq-nav .nav-link:hover,
.section-faq-nav .nav-link:focus {
    color: var(--brand-primary);
    background-color: var(--neutral-200);
}

/* FAQ Category Headers */
.faq-category {
    scroll-margin-top: 100px;
}

.faq-category h2 {
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--neutral-200);
}

/* ===================================
   CTA Section
   =================================== */
.section-cta {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-secondary-dark) 100%);
    text-align: center;
}

.section-cta h2 {
    color: #fff;
    margin-bottom: var(--space-md);
}

.section-cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--neutral-800);
    color: var(--neutral-300);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer h5 {
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
}

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

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--neutral-400);
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid var(--neutral-700);
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--neutral-500);
    margin: 0;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: flex-end;
}

.footer-legal a {
    color: var(--neutral-500);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--neutral-300);
}

/* ===================================
   Utilities
   =================================== */
.text-accent {
    color: var(--brand-accent);
}

.bg-light-custom {
    background-color: var(--neutral-100);
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--brand-primary);
    color: #fff;
    padding: var(--space-sm) var(--space-md);
    z-index: 9999;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

/* ===================================
   Error Pages
   =================================== */
.section-error {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.section-error .error-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===================================
   Legal / Info Pages (NEW)
   =================================== */
.section-legal {
    padding: var(--space-3xl) 0;
    background-color: #fff;
}

.section-legal .legal-content {
    max-width: 800px;
}

.section-legal h2 {
    font-size: 1.375rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--neutral-200);
    color: #d4a54a;
}

.section-legal h2:first-of-type {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.section-legal h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    color: var(--brand-secondary);
}

.section-legal p {
    line-height: 1.8;
    color: var(--neutral-700);
}

.section-legal ul,
.section-legal ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.section-legal li {
    line-height: 1.7;
    margin-bottom: 0.5rem;
    color: var(--neutral-700);
}

.section-legal code {
    background-color: var(--neutral-100);
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    font-size: 0.9em;
    color: var(--brand-primary);
}

.section-legal a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.section-legal a:hover {
    color: var(--brand-primary);
}

/* Legal page intro box */
.legal-intro {
    background-color: var(--neutral-50);
    border-left: 4px solid var(--brand-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.legal-intro p {
    margin-bottom: 0;
    font-size: 1.05rem;
}

/* Legal page summary card */
.legal-summary {
    background-color: var(--neutral-50);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-2xl);
}

.legal-summary h3 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: 0;
    margin-bottom: var(--space-md);
    color: var(--brand-primary);
}

.legal-summary ul {
    margin-bottom: 0;
}

/* Legal page last updated */
.legal-updated {
    color: var(--neutral-500);
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
}

/* ===================================
   Contact Page
   =================================== */
.contact-info-card {
    background-color: var(--neutral-50);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    height: 100%;
    border: 1px solid var(--neutral-200);
}

.contact-info-card h3 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
}

.contact-info-card h3 i {
    color: var(--brand-secondary);
}

.contact-disclaimer {
    background-color: rgba(212, 165, 74, 0.1);
    border-left: 4px solid var(--brand-accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-disclaimer p {
    margin-bottom: 0;
}

.contact-help-list {
    background-color: var(--neutral-50);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-xl);
}

.contact-help-list h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
}

.contact-help-list ul {
    margin-bottom: 0;
}

/* ===================================
   Filter Bar (Articles Overview)
   =================================== */
.section-filter {
    padding: 1.5rem 0;
    background-color: var(--neutral-50);
    border-bottom: 1px solid var(--neutral-200);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.filter-label {
    font-weight: 500;
    color: var(--neutral-600);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.4rem 1rem;
    border: 1px solid var(--neutral-300);
    border-radius: 50px;
    background-color: #fff;
    color: var(--neutral-600);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: var(--brand-secondary);
    color: var(--brand-secondary);
}

.filter-btn.active {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

/* No results message */
.no-results {
    text-align: center;
    padding: var(--space-3xl);
    color: var(--neutral-500);
}

/* ===================================
   Breadcrumb
   =================================== */
.breadcrumb-nav {
    padding: 1rem 0;
    background-color: var(--neutral-50);
    border-bottom: 1px solid var(--neutral-200);
}

.breadcrumb {
    margin-bottom: 0;
    padding: 0;
    background: transparent;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: var(--neutral-600);
    text-decoration: none;
}

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

.breadcrumb-item.active {
    color: var(--neutral-500);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    padding: 0 0.5rem;
    color: var(--neutral-400);
}

/* ===================================
   Article Detail Header
   =================================== */
.article-header {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: #fff;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.article-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.article-reading-time {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.article-header h1 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #fff;
}

.article-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .article-header {
        padding: 2rem 0;
    }
    
    .article-header h1 {
        font-size: 1.75rem;
    }
    
    .article-intro {
        font-size: 1.05rem;
    }
}

/* ===================================
   Article Content
   =================================== */
.article-content {
    padding: 3rem 0;
}

.article-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.article-content h2:first-child,
.article-summary + .article-section h2 {
    margin-top: 0;
    padding-top: 0;
}

.article-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--neutral-700);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.article-content p {
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--neutral-700);
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.article-content li {
    line-height: 1.7;
    margin-bottom: 0.5rem;
    color: var(--neutral-700);
}

.article-content a {
    color: var(--brand-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article-content a:hover {
    color: var(--brand-secondary);
}

/* Article Summary (In het kort) */
.article-summary {
    background-color: var(--neutral-50);
    border-left: 4px solid var(--brand-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.article-summary h2 {
    font-size: 1.2rem;
    margin: 0 0 1rem 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-summary ul {
    margin-bottom: 0;
    padding-left: 1.25rem;
}

.article-summary li {
    margin-bottom: 0.5rem;
}

.article-summary li:last-child {
    margin-bottom: 0;
}

/* Article Callout Boxes */
.article-callout {
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

.article-callout h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-callout ul {
    margin-bottom: 0;
}

.article-callout-info {
    background-color: rgba(42, 125, 140, 0.1);
    border-left: 4px solid var(--brand-secondary);
}

.article-callout-info h4 {
    color: var(--brand-secondary);
}

.article-callout-warning {
    background-color: rgba(212, 168, 83, 0.15);
    border-left: 4px solid var(--brand-accent);
}

.article-callout-warning h4 {
    color: #b8860b;
}

/* Article Checklist */
.article-checklist {
    background-color: var(--neutral-50);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--neutral-200);
}

.checklist-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.checklist-item:first-child {
    padding-top: 0;
}

.checklist-item i {
    color: var(--brand-secondary);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.checklist-item span {
    line-height: 1.6;
}

/* Article Mini FAQ */
.article-mini-faq {
    background-color: var(--neutral-50);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-top: var(--space-xl);
}

.article-mini-faq h2 {
    margin: 0 0 1rem 0;
    padding: 0;
}

.article-mini-faq .accordion-item {
    border: 1px solid var(--neutral-200);
    margin-bottom: 0.5rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.article-mini-faq .accordion-item:last-of-type {
    margin-bottom: 0;
}

.article-mini-faq .accordion-button {
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem;
}

.article-mini-faq .accordion-body {
    padding: 1rem;
    padding-top: 0;
}

/* Article Disclaimer */
.article-disclaimer {
    background-color: var(--neutral-100);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-top: var(--space-xl);
    font-size: 0.9rem;
}

.article-disclaimer p {
    margin-bottom: 0;
    color: var(--neutral-600);
    line-height: 1.6;
}

.article-disclaimer i {
    color: var(--neutral-500);
    margin-right: 0.25rem;
}

/* Article Section Spacing */
.article-section {
    margin-bottom: var(--space-xl);
}

.article-section:last-of-type {
    margin-bottom: 0;
}

/* Tables in Articles */
.article-content .table {
    margin: 1.5rem 0;
}

.article-content .table th {
    background-color: var(--neutral-100);
    font-weight: 600;
    color: var(--neutral-700);
}

.article-content .table td,
.article-content .table th {
    padding: 0.75rem 1rem;
    vertical-align: middle;
}

/* Related Articles Section */
.section-related {
    padding: 3rem 0;
    background-color: var(--neutral-50);
}

.section-related .article-card {
    height: 100%;
}

.section-related .article-title {
    font-size: 1.1rem;
}

/* ===================================
   Responsive Adjustments
   =================================== */
@media (max-width: 767.98px) {
    .section-usp,
    .section-checklist,
    .section-articles,
    .section-trust,
    .section-faq,
    .section-cta,
    .section-legal 
    .section-artikelen {
        padding: var(--space-2xl) 0;
    }
    
    .footer-legal {
        justify-content: flex-start;
        margin-top: var(--space-md);
    }
    
    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-buttons {
        width: 100%;
    }
}
