/* ===== RESET & BASE (Mobile-first) ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
:root {
    --navy: #1a2744;
    --navy-light: #243356;
    --navy-dark: #111b30;
    --gold: #c9a84c;
    --gold-light: #ddc274;
    --gold-dark: #a88a36;
    --white: #ffffff;
    --off-white: #f8f7f4;
    --grey-light: #e8e6e1;
    --grey: #999;
    --text: #333;
    --text-light: #666;
    --shadow: 0 4px 20px rgba(26,39,68,0.1);
    --shadow-hover: 0 8px 32px rgba(26,39,68,0.18);
    --radius: 12px;
    --transition: 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 1.3;
    color: var(--navy);
}

a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
a:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 3px; }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--navy-light); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: inherit;
}
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(201,168,76,0.4); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); color: var(--white); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(26,39,68,0.3); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: 1.8rem; margin-bottom: 12px; }
.section-header p { color: var(--text-light); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-divider { width: 60px; height: 3px; background: var(--gold); margin: 16px auto; border-radius: 2px; }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--navy-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}
.top-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.top-bar a { color: var(--gold-light); }
.top-bar a:hover { color: var(--gold); }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-icon { font-size: 1rem; }

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(26,39,68,0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition);
}
.navbar.scrolled { background: var(--navy); box-shadow: 0 2px 20px rgba(0,0,0,0.3); padding: 8px 0; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon {
    width: 40px; height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.nav-logo-text { font-family: Georgia, serif; font-size: 1.4rem; font-weight: 700; color: var(--white); letter-spacing: 1px; }
.nav-logo-text span { color: var(--gold); }

.nav-links { display: none; list-style: none; gap: 28px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.95rem; font-weight: 500; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width var(--transition); }
.nav-links a:hover, .nav-links a:focus { color: var(--white); }
.nav-links a:hover::after, .nav-links a:focus::after { width: 100%; }
.nav-cta { padding: 10px 24px; font-size: 0.85rem; }

.hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.hamburger span { display: block; width: 26px; height: 2.5px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--navy);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a { color: var(--white); font-size: 1.3rem; font-family: Georgia, serif; }
.mobile-nav a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/hero.webp') center/cover no-repeat;
    background-attachment: scroll;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,39,68,0.88) 0%, rgba(26,39,68,0.65) 100%);
}
.hero-content {
    position: relative;
    text-align: center;
    padding: 60px 20px;
    max-width: 780px;
}
.hero-content h1 { color: var(--white); font-size: 2.2rem; margin-bottom: 18px; }
.hero-content h1 span { color: var(--gold); }
.hero-content p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== TRUST BADGES ===== */
.trust-badges { background: var(--off-white); padding: 40px 0; }
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: center;
}
.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}
.trust-badge:hover { transform: translateY(-4px); }
.trust-badge-icon { font-size: 2rem; }
.trust-badge h4 { font-size: 0.95rem; color: var(--navy); }
.trust-badge p { font-size: 0.8rem; color: var(--text-light); }

/* ===== SERVICES ===== */
.services { padding: 80px 0; }
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-icon {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 44px; height: 44px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(201,168,76,0.3);
    z-index: 1;
}
.service-card-body { padding: 28px 24px 24px; }
.service-card-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card-body p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 16px; }
.service-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.service-link:hover { color: var(--gold); gap: 10px; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 80px 0; background: var(--navy); color: var(--white); }
.how-it-works .section-header h2 { color: var(--white); }
.how-it-works .section-header p { color: rgba(255,255,255,0.7); }
.steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
}
.step {
    text-align: center;
    max-width: 280px;
    position: relative;
}
.step-number {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-family: Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    position: relative;
    z-index: 1;
}
.step h3 { font-size: 1.15rem; color: var(--white); margin-bottom: 8px; }
.step p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.step-connector {
    width: 3px; height: 40px; background: var(--gold); opacity: 0.4;
}

/* ===== ABOUT ===== */
.about { padding: 80px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.about-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { font-size: 1.8rem; margin-bottom: 8px; }
.about-content .section-divider { margin: 16px 0; }
.about-content p { color: var(--text-light); margin-bottom: 16px; font-size: 1rem; }
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.about-stat { text-align: center; }
.about-stat .stat-number { font-family: Georgia, serif; font-size: 2rem; color: var(--gold-dark); font-weight: 700; }
.about-stat .stat-label { font-size: 0.85rem; color: var(--text-light); }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 80px 0; background: var(--off-white); }
.testimonial-carousel { position: relative; overflow: hidden; max-width: 700px; margin: 0 auto; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
}
.testimonial-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}
.testimonial-quote {
    font-size: 3.5rem;
    color: var(--gold);
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 8px;
}
.testimonial-card p { font-style: italic; color: var(--text-light); font-size: 1.05rem; margin-bottom: 20px; line-height: 1.8; }
.testimonial-author { font-weight: 700; color: var(--navy); font-size: 1rem; }
.testimonial-location { font-size: 0.85rem; color: var(--grey); }
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.carousel-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--grey-light);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}
.carousel-dot.active { background: var(--gold); transform: scale(1.2); }

/* ===== PRICING ===== */
.pricing { padding: 80px 0; }
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}
.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 2px solid transparent;
    position: relative;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.pricing-card.featured { border-color: var(--gold); }
.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pricing-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.pricing-price { font-family: Georgia, serif; margin: 16px 0; }
.pricing-price .from { font-size: 0.9rem; color: var(--text-light); }
.pricing-price .amount { font-size: 2.8rem; color: var(--navy); font-weight: 700; }
.pricing-price .period { font-size: 0.9rem; color: var(--text-light); }
.pricing-features { list-style: none; margin: 24px 0; text-align: left; }
.pricing-features li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--grey-light);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-features li:last-child { border: none; }
.pricing-features .check { color: var(--gold-dark); font-weight: 700; font-size: 1.1rem; }
.pricing-card .btn { width: 100%; }

/* ===== FAQ ===== */
.faq { padding: 80px 0; background: var(--off-white); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(26,39,68,0.06);
}
.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: inherit;
    line-height: 1.5;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question:focus-visible { outline: 3px solid var(--gold); outline-offset: -3px; }
.faq-icon {
    font-size: 1.4rem;
    transition: transform var(--transition);
    flex-shrink: 0;
    color: var(--gold);
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer-inner { padding: 0 24px 20px; color: var(--text-light); line-height: 1.8; }

/* ===== CONTACT ===== */
.contact { padding: 80px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.contact-form { background: var(--white); padding: 32px 24px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--grey-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition);
    background: var(--off-white);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group.error input, .form-group.error textarea { border-color: #e74c3c; }
.form-error { color: #e74c3c; font-size: 0.8rem; margin-top: 4px; display: none; }
.form-group.error .form-error { display: block; }
.consent-group { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 20px; }
.consent-group input[type="checkbox"] { margin-top: 4px; accent-color: var(--gold); width: 18px; height: 18px; flex-shrink: 0; }
.consent-group label { font-size: 0.85rem; color: var(--text-light); font-weight: 400; }
.consent-group a { text-decoration: underline; }
.contact-form .btn { width: 100%; }

.contact-info-card {
    background: var(--navy);
    padding: 32px 24px;
    border-radius: var(--radius);
    color: var(--white);
}
.contact-info-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
.contact-info-icon { font-size: 1.3rem; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-info-item h4 { color: var(--gold-light); font-size: 0.9rem; margin-bottom: 4px; font-family: inherit; font-weight: 600; }
.contact-info-item p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.contact-info-item a { color: rgba(255,255,255,0.8); }
.contact-info-item a:hover { color: var(--gold); }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
}
.footer-col h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 18px; font-family: Georgia, serif; }
.footer-col p { font-size: 0.9rem; margin-bottom: 8px; }
.footer-col .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-col .footer-logo-text { font-family: Georgia, serif; font-size: 1.3rem; color: var(--white); font-weight: 700; }
.footer-col .footer-logo-text span { color: var(--gold); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: all var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    font-size: 0.85rem;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--navy);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.cookie-consent.show { display: block; }
.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}
.cookie-inner p { font-size: 0.9rem; color: rgba(255,255,255,0.85); line-height: 1.6; }
.cookie-inner a { color: var(--gold-light); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    transition: all var(--transition);
}
.cookie-accept { background: var(--gold); color: var(--navy); }
.cookie-accept:hover { background: var(--gold-light); }
.cookie-decline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.cookie-decline:hover { border-color: var(--white); }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 48px; height: 48px;
    background: var(--navy);
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 999;
    transition: all var(--transition);
}
.back-to-top:hover { background: var(--gold); color: var(--navy); }
.back-to-top.show { display: flex; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE: 576px ===== */
@media (min-width: 576px) {
    .hero-content h1 { font-size: 2.6rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== RESPONSIVE: 768px ===== */
@media (min-width: 768px) {
    .hero-content h1 { font-size: 3rem; }
    .hero-content p { font-size: 1.2rem; }
    .section-header h2 { font-size: 2.2rem; }
    .hero { background-attachment: fixed; }
    .steps-container { flex-direction: row; gap: 0; }
    .step-connector { width: 60px; height: 3px; align-self: flex-start; margin-top: 34px; }
    .about-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .cookie-inner { flex-direction: row; text-align: left; }
    .page-hero h1 { font-size: 2.4rem; }
}

/* ===== RESPONSIVE: 992px ===== */
@media (min-width: 992px) {
    .nav-links { display: flex; }
    .hamburger { display: none; }
    .hero-content h1 { font-size: 3.4rem; }
    .services-grid { grid-template-columns: repeat(4, 1fr); }
    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
    .top-bar .container { justify-content: flex-end; }
}

/* ===== RESPONSIVE: 1200px ===== */
@media (min-width: 1200px) {
    .container { padding: 0 40px; }
    .hero-content h1 { font-size: 3.6rem; }
    .about-grid { gap: 60px; }
    .contact-grid { gap: 60px; }
}


/* ==========================================================================
   SUBPAGE STYLES (privacy-policy.html, terms-of-use.html, gdpr.html)
   ========================================================================== */

/* ===== PAGE HERO (Subpage banner) ===== */
.page-hero { background: var(--navy); padding: 60px 0 40px; text-align: center; }
.page-hero h1 { color: var(--white); font-size: 2rem; margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; }

/* ===== LEGAL CONTENT (Shared by all legal subpages) ===== */
.legal-content { padding: 60px 0 80px; max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 1.5rem; margin: 40px 0 16px; padding-top: 16px; border-top: 1px solid var(--grey-light); }
.legal-content h2:first-of-type { border-top: none; margin-top: 0; }
.legal-content h3 { font-size: 1.15rem; margin: 24px 0 10px; }
.legal-content p { margin-bottom: 14px; color: var(--text-light); }
.legal-content ul, .legal-content ol { margin: 12px 0 18px 24px; color: var(--text-light); }
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: var(--text); }
.legal-content a { text-decoration: underline; }
.legal-meta { background: var(--off-white); padding: 20px; border-radius: var(--radius); margin-bottom: 32px; }
.legal-meta p { margin-bottom: 4px; font-size: 0.9rem; }


/* ==========================================================================
   GDPR PAGE — Cookie Table (gdpr.html only)
   ========================================================================== */

.cookie-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 0.9rem; }
.cookie-table th, .cookie-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--grey-light); color: var(--text-light); }
.cookie-table th { background: var(--off-white); color: var(--navy); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; }
.cookie-table tr:hover td { background: var(--off-white); }
