/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

/* Dutch Color Palette */
:root {
    --primary-orange: #FF6B35;
    --royal-blue: #002868;
    --tulip-red: #DC143C;
    --holland-green: #228B22;
    --cream-white: #FFF8DC;
    --warm-yellow: #FFD700;
    --deep-brown: #8B4513;
    --light-gray: #F5F5F5;
    --medium-gray: #666;
    --dark-gray: #333;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--royal-blue);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--tulip-red);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: white;
}

.btn-primary:hover {
    background-color: var(--tulip-red);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--royal-blue);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--dark-gray);
    color: white;
}

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

.btn-outline:hover {
    background-color: var(--royal-blue);
    color: white;
}

.inline-btn {
    background: none;
    border: none;
    color: var(--primary-orange);
    text-decoration: underline;
    cursor: pointer;
    font-size: inherit;
}

.inline-btn:hover {
    color: var(--tulip-red);
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 40px;
    height: 40px;
}

.brand-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--royal-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--dark-gray);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-orange);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-orange);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, var(--cream-white) 0%, #fff 50%, var(--light-gray) 100%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--royal-blue);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--medium-gray);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-svg {
    max-width: 100%;
    height: auto;
    max-height: 500px;
}

/* Sections */
section {
    padding: 60px 0;
}

.services {
    background-color: var(--light-gray);
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: block;
}

.service-card h3 {
    color: var(--royal-blue);
    margin-bottom: 1rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-features {
    list-style: none;
    margin-top: 2rem;
}

.about-features li {
    padding: 0.5rem 0;
    color: var(--holland-green);
    font-weight: 500;
}

.about-svg {
    max-width: 100%;
    height: auto;
}

/* Stats Section */
.stats {
    background-color: var(--royal-blue);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--warm-yellow);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: white;
    font-size: 1.1rem;
}

/* Reviews Section */
.reviews {
    background-color: var(--cream-white);
}

.reviews h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-stars {
    color: var(--warm-yellow);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.reviewer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.reviewer strong {
    color: var(--royal-blue);
}

.reviewer span {
    color: var(--medium-gray);
    display: block;
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--primary-orange);
    color: white;
    text-align: center;
}

.newsletter h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter p {
    color: white;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    color: var(--royal-blue);
    display: block;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links a {
    color: var(--primary-orange);
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--warm-yellow);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
}

.footer-section ul li a:hover,
.footer-section ul li a.active {
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--royal-blue);
    color: white;
    padding: 1rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

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

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1002;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--royal-blue);
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--medium-gray);
}

.modal-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-category div {
    flex: 1;
}

.cookie-category h4 {
    margin-bottom: 0.5rem;
    color: var(--royal-blue);
}

.cookie-category p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin: 0;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-orange);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    background-color: var(--holland-green);
    cursor: not-allowed;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--light-gray);
    text-align: center;
}

/* Blog Styles */
.blog-hero {
    background-color: var(--cream-white);
    padding: 120px 0 60px;
    text-align: center;
}

.blog-hero h1 {
    margin-bottom: 1rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.article-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.article-image {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-gray);
}

.article-icon {
    width: 100px;
    height: 100px;
}

.article-content {
    padding: 2rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.article-meta .date {
    color: var(--medium-gray);
}

.article-meta .category {
    background-color: var(--primary-orange);
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.8rem;
}

.article-content h2 {
    margin-bottom: 1rem;
}

.article-content h2 a {
    color: var(--royal-blue);
}

.read-more {
    color: var(--primary-orange);
    font-weight: 500;
    margin-top: 1rem;
    display: inline-block;
}

/* Article Page Styles */
.article-header {
    background-color: var(--light-gray);
    padding: 120px 0 60px;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

.breadcrumb a {
    color: var(--primary-orange);
}

.article-header h1 {
    margin-bottom: 1rem;
    max-width: 800px;
}

.article-header .article-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.article-content {
    padding: 60px 0;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.article-intro {
    margin-bottom: 3rem;
}

.article-featured-image {
    width: 150px;
    height: 150px;
    float: left;
    margin: 0 2rem 1rem 0;
}

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--medium-gray);
    line-height: 1.7;
}

.tip-box {
    background-color: var(--cream-white);
    border-left: 4px solid var(--primary-orange);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 5px 5px 0;
}

.tip-box h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-orange);
}

.technique-box {
    background-color: white;
    border: 1px solid var(--light-gray);
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 5px;
}

.technique-box h4 {
    color: var(--holland-green);
    margin-bottom: 0.5rem;
}

.price-table table,
.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.price-table th,
.price-table td,
.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.price-table th,
.cookie-table th {
    background-color: var(--light-gray);
    font-weight: 600;
    color: var(--royal-blue);
}

.stats-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.stats-inline .stat {
    text-align: center;
    padding: 1rem;
    background-color: var(--light-gray);
    border-radius: 5px;
}

.stats-inline .stat strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.author-bio {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 5px;
    margin: 3rem 0;
}

.author-bio h3 {
    color: var(--royal-blue);
    margin-bottom: 1rem;
}

.related-articles {
    background-color: var(--cream-white);
    padding: 60px 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.related-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.related-card h3 {
    margin-bottom: 1rem;
}

.related-card h3 a {
    color: var(--royal-blue);
}

/* Thank You Page */
.thank-you {
    padding: 120px 0;
    text-align: center;
    background-color: var(--cream-white);
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.thank-you h1 {
    color: var(--royal-blue);
    margin-bottom: 1.5rem;
}

.thank-you-message {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--medium-gray);
}

.what-next {
    text-align: left;
    margin: 3rem 0;
}

.benefits-list {
    list-style: none;
    margin-top: 1rem;
}

.benefits-list li {
    padding: 0.5rem 0;
    color: var(--holland-green);
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-content {
    padding: 120px 0 60px;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.last-updated {
    color: var(--medium-gray);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-text h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--royal-blue);
}

.legal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-orange);
}

.legal-text ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.contact-box {
    background-color: var(--cream-white);
    padding: 2rem;
    border-radius: 5px;
    margin: 2rem 0;
    text-align: center;
}

.contact-box h3 {
    color: var(--royal-blue);
    margin-bottom: 1rem;
}

.cookie-controls {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 5px;
}

/* Additional Blog Article Styles */
.season-activities {
    background-color: white;
    border: 1px solid var(--light-gray);
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 5px;
}

.season-activities h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.target-group {
    background-color: var(--light-gray);
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 5px;
}

.target-group h4 {
    color: var(--royal-blue);
    margin-bottom: 1rem;
}

.price-guide {
    margin: 2rem 0;
}

.case-study {
    background-color: white;
    border-left: 4px solid var(--holland-green);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 5px 5px 0;
}

.energy-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 5px;
    border: 1px solid var(--light-gray);
    text-align: center;
}

.stat-card h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.circular-economy {
    background-color: var(--cream-white);
    padding: 1.5rem;
    border-radius: 5px;
    margin: 1.5rem 0;
}

.circular-economy h4 {
    color: var(--holland-green);
    margin-bottom: 1rem;
}

.certification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.cert-card {
    background-color: white;
    border: 1px solid var(--light-gray);
    padding: 1.5rem;
    border-radius: 5px;
}

.cert-card h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.investment-stats {
    margin: 2rem 0;
}

.investment-stats table {
    width: 100%;
    border-collapse: collapse;
}

.investment-stats th,
.investment-stats td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.investment-stats th {
    background-color: var(--light-gray);
    color: var(--royal-blue);
    font-weight: 600;
}

.economic-impact {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 5px;
    margin: 2rem 0;
}

.future-vision {
    background: linear-gradient(135deg, var(--royal-blue), var(--primary-orange));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.future-vision h3 {
    color: white;
    margin-bottom: 1rem;
}

.future-vision p {
    color: white;
    margin: 0;
}

.experience-card {
    background-color: white;
    border: 1px solid var(--light-gray);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 5px;
    border-left: 4px solid var(--primary-orange);
}

.experience-card h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .article-featured-image {
        float: none;
        margin: 0 auto 2rem;
        display: block;
    }

    .stats-inline {
        grid-template-columns: 1fr;
    }

    .energy-stats {
        grid-template-columns: 1fr;
    }

    .certification-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .services-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .cookie-modal-content {
        width: 95%;
        margin: 20px;
    }

    .cookie-category {
        flex-direction: column;
        gap: 0.5rem;
        text-align: left;
    }

    .price-table,
    .cookie-table {
        font-size: 0.9rem;
    }

    .price-table th,
    .price-table td,
    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .newsletter,
    .related-articles {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .legal-content,
    .article-content {
        padding: 0;
    }

    .container {
        max-width: none;
        padding: 0;
    }

    a {
        color: inherit;
        text-decoration: underline;
    }

    .tip-box,
    .technique-box,
    .case-study,
    .author-bio {
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
}

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

    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for keyboard navigation */
button:focus,
input:focus,
a:focus,
.nav-toggle:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-orange: #ff4500;
        --royal-blue: #000080;
        --tulip-red: #dc143c;
        --holland-green: #006400;
    }
}
