:root {
    --primary: #0d1b2a;
    --secondary: #d4af37;
    --secondary-hover: #bfa030;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --text-dark: #1b263b;
    --text-muted: #6c757d;
    --border-color: #e9ecef;
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Accessibility Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--secondary);
    color: var(--primary);
    padding: 8px;
    z-index: 100;
    transition: top 0.2s;
    font-weight: bold;
    text-decoration: none;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Layout Elements */
header {
    background-color: var(--primary);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 2px solid var(--secondary);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--bg-white);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-link img {
    height: 40px;
    width: 40px;
    margin-right: 10px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

nav a {
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

nav a:hover, nav a:focus {
    color: var(--secondary);
    outline: none;
}

/* Hamburger */
.burger {
    display: none;
    background: none;
    border: none;
    color: var(--bg-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.burger:focus {
    outline: 2px solid var(--secondary);
}

/* Sections */
section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--secondary);
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    border: 2px solid var(--secondary);
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    font-family: var(--font-sans);
}

.btn:hover, .btn:focus {
    background-color: var(--secondary-hover);
    border-color: var(--secondary-hover);
    color: var(--primary);
    outline: none;
}

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

.btn-outline:hover, .btn-outline:focus {
    background-color: var(--primary);
    color: var(--bg-white);
}

/* Hero Section */
.hero {
    background-color: var(--primary);
    color: var(--bg-white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    min-height: 80vh;
}

.hero h1 {
    color: var(--bg-white);
    font-size: 3rem;
}

.hero-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 3px solid var(--secondary);
}

/* Stats */
.stats {
    background-color: var(--bg-light);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

/* How It Works & Services */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary);
    transition: transform 0.2s;
}

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

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

/* Feature Row (Asymmetrical) */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.feature-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.feature-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.price-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
}

.price-card.popular {
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    transform: scale(1.03);
}

.popular-badge {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
}

.price-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin: 1.5rem 0;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-btn:focus {
    outline: 2px solid var(--secondary);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.faq-content.open {
    max-height: 500px;
}

/* Contact / Form Section */
.contact-section {
    background-color: var(--bg-light);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-sans);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.3rem;
}

/* Legal & Trust Layers */
.trust-layer {
    background-color: #112233;
    color: var(--bg-light);
    padding: 3rem 2rem;
    font-size: 0.85rem;
    border-top: 1px solid var(--secondary);
}

.trust-layer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.trust-layer h4 {
    color: var(--secondary);
}

.trust-layer a {
    color: var(--secondary);
    text-decoration: underline;
}

.trust-layer a:hover {
    color: var(--bg-white);
}

footer {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #1a2c42;
    font-size: 0.9rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--bg-white);
    text-decoration: none;
}

.footer-nav a:hover {
    color: var(--secondary);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid var(--secondary);
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-text {
    max-width: 70%;
    font-size: 0.9rem;
}

.cookie-text a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 1rem;
}

/* Specific Content Page styles */
.content-page {
    padding-top: 3rem;
    padding-bottom: 5rem;
}

.content-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 1rem;
}

.content-page h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-page p, .content-page ul {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #2b3a4a;
}

.content-page ul {
    padding-left: 2rem;
}

.map-container {
    margin-top: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

/* Media Queries */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .stats {
        grid-template-columns: 1fr 1fr;
    }
    .feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .price-card.popular {
        transform: none;
    }
    .trust-layer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .cookie-banner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .cookie-text {
        max-width: 100%;
    }
    .burger {
        display: block;
    }
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary);
        padding: 1.5rem;
        border-bottom: 2px solid var(--secondary);
    }
    nav ul.active {
        display: flex;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}