/* --------------------- */
/* Global CSS Variables  */
/* --------------------- */
:root {
    /* Color palette - Danish-inspired minimalist design */
    --primary-color: 205 60% 40%; /* #2980b9 - Main blue */
    --primary-dark: 205 60% 30%; /* #1e6091 - Darker blue */
    --primary-light: 205 60% 60%; /* #68abdf - Lighter blue */
    --secondary-color: 24 70% 50%; /* #e67e22 - Complementary orange */
    --accent-color: 160 70% 35%; /* #16a085 - Teal accent */
    
    --text-dark: 210 15% 20%; /* #2c3e50 - Dark text */
    --text-medium: 210 10% 40%; /* #596673 - Medium text */
    --text-light: 210 5% 60%; /* #939aa3 - Light text */
    
    --bg-white: 0 0% 100%; /* #ffffff - Pure white */
    --bg-light: 210 30% 97%; /* #f7f9fb - Off-white */
    --bg-gray: 210 10% 95%; /* #f0f2f5 - Light gray */
    --bg-dark: 210 30% 15%; /* #1c2833 - Dark background */
    
    --error-color: 0 70% 50%; /* #e74c3c - Error/danger */
    --success-color: 120 40% 50%; /* #2ecc71 - Success */
    
    /* Typography */
    --font-family-primary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-family-headings: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;  /* 4px */
    --spacing-sm: 0.5rem;   /* 8px */
    --spacing-md: 1rem;     /* 16px */
    --spacing-lg: 1.5rem;   /* 24px */
    --spacing-xl: 2rem;     /* 32px */
    --spacing-xxl: 3rem;    /* 48px */
    --spacing-huge: 4rem;   /* 64px */
    
    /* Borders */
    --border-radius-sm: 0.125rem;   /* 2px */
    --border-radius-md: 0.25rem;    /* 4px */
    --border-radius-lg: 0.5rem;     /* 8px */
    --border-radius-xl: 1rem;       /* 16px */
    --border-radius-round: 50%;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px hsla(0, 0%, 0%, 0.1);
    --shadow-md: 0 4px 6px hsla(0, 0%, 0%, 0.07), 0 1px 3px hsla(0, 0%, 0%, 0.08);
    --shadow-lg: 0 10px 15px -3px hsla(0, 0%, 0%, 0.1), 0 4px 6px -2px hsla(0, 0%, 0%, 0.05);
    --shadow-xl: 0 20px 25px -5px hsla(0, 0%, 0%, 0.1), 0 10px 10px -5px hsla(0, 0%, 0%, 0.04);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
    
    /* Container widths */
    --container-max-width: 1200px;
    --container-narrow-max-width: 920px;
}

/* --------------------- */
/* CSS Reset & Defaults  */
/* --------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-family-primary);
    font-weight: 400;
    line-height: 1.6;
    color: hsl(var(--text-dark));
    background-color: hsl(var(--bg-white));
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

a {
    color: hsl(var(--primary-color));
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: hsl(var(--primary-dark));
}

button, input, select, textarea {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

input:focus, 
textarea:focus,
select:focus,
button:focus {
    outline: 2px solid hsl(var(--primary-light));
    outline-offset: 2px;
}

/* --------------------- */
/* Typography            */
/* --------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-headings);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: hsl(var(--text-dark));
}

h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

h4 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

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

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

/* --------------------- */
/* Layout & Containers   */
/* --------------------- */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.container-narrow {
    max-width: var(--container-narrow-max-width);
}

section {
    padding: var(--spacing-xxl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header .section-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--spacing-sm);
}

.section-header h2 {
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    color: hsl(var(--text-medium));
    max-width: 600px;
    margin: 0 auto;
}

/* --------------------- */
/* Buttons & Links       */
/* --------------------- */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.btn-primary:hover {
    background-color: hsl(var(--primary-dark));
    color: hsl(var(--bg-white));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: hsl(var(--primary-color));
    border: 1px solid hsl(var(--primary-color));
}

.btn-secondary:hover {
    background-color: hsla(var(--primary-color), 0.1);
    color: hsl(var(--primary-dark));
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

/* --------------------- */
/* Header & Navigation   */
/* --------------------- */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: hsl(var(--bg-white));
    padding: var(--spacing-md) 0;
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-list a {
    color: hsl(var(--text-dark));
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-fast);
}

.nav-list a:hover,
.nav-list a.active {
    color: hsl(var(--primary-color));
    background-color: hsla(var(--primary-color), 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: hsl(var(--text-dark));
    transition: all var(--transition-normal);
}

/* --------------------- */
/* Hero Section          */
/* --------------------- */
.hero-section {
    padding: var(--spacing-huge) 0;
    background-color: hsl(var(--bg-light));
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.hero-content {
    flex: 1;
}

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

.hero-banner {
    max-width: 100%;
    height: auto;
}

.hero-content h1 {
    margin-bottom: var(--spacing-md);
}

.hero-content p {
    font-size: 1.2rem;
    color: hsl(var(--text-medium));
    margin-bottom: var(--spacing-lg);
}

/* --------------------- */
/* About Section         */
/* --------------------- */
.about-section {
    background-color: hsl(var(--bg-white));
}

.about-content {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text {
    flex: 3;
}

.about-stats {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.stat-item {
    flex: 1 1 calc(50% - var(--spacing-md));
    padding: var(--spacing-md);
    text-align: center;
    background-color: hsl(var(--bg-light));
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--primary-color));
    margin-bottom: var(--spacing-xs);
}

.stat-text {
    color: hsl(var(--text-medium));
    font-size: 0.9rem;
}

/* --------------------- */
/* Services Section      */
/* --------------------- */
.services-section {
    background-color: hsl(var(--bg-light));
    padding: var(--spacing-xxl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    background-color: hsl(var(--bg-white));
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--spacing-md);
}

.service-card h3 {
    margin-bottom: var(--spacing-sm);
    color: hsl(var(--text-dark));
}

.service-card p {
    color: hsl(var(--text-medium));
    font-size: 0.95rem;
}

/* --------------------- */
/* Testimonials Section  */
/* --------------------- */
.testimonials-section {
    background-color: hsl(var(--bg-white));
    padding: var(--spacing-xxl) 0;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    animation: fadeEffect 0.5s;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeEffect {
    from {opacity: 0.7;}
    to {opacity: 1;}
}

.testimonial-content {
    background-color: hsl(var(--bg-light));
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-content::before {
    content: """;
    position: absolute;
    top: 0;
    left: var(--spacing-md);
    font-size: 5rem;
    color: hsla(var(--primary-color), 0.1);
    line-height: 1;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-author h4 {
    margin-bottom: 0;
    color: hsl(var(--text-dark));
}

.testimonial-author p {
    margin-bottom: 0;
    color: hsl(var(--text-medium));
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--spacing-lg);
}

.prev-testimonial,
.next-testimonial {
    background-color: transparent;
    border: none;
    color: hsl(var(--text-medium));
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--spacing-xs);
    transition: color var(--transition-fast);
}

.prev-testimonial:hover,
.next-testimonial:hover {
    color: hsl(var(--primary-color));
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin: 0 var(--spacing-md);
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 var(--spacing-xs);
    background-color: hsl(var(--bg-gray));
    border-radius: var(--border-radius-round);
    display: inline-block;
    transition: background-color var(--transition-fast);
    cursor: pointer;
}

.dot.active,
.dot:hover {
    background-color: hsl(var(--primary-color));
}

/* --------------------- */
/* Blog Preview Section  */
/* --------------------- */
.blog-preview-section {
    background-color: hsl(var(--bg-light));
    padding: var(--spacing-xxl) 0;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.blog-card {
    background-color: hsl(var(--bg-white));
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.blog-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-card-content {
    padding: var(--spacing-lg);
}

.blog-card-content h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.blog-card-content p {
    color: hsl(var(--text-medium));
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.blog-preview-footer {
    text-align: center;
}

/* --------------------- */
/* Contact Section       */
/* --------------------- */
.contact-section {
    background-color: hsl(var(--bg-white));
    padding: var(--spacing-xxl) 0;
}

.contact-content {
    display: flex;
    gap: var(--spacing-xl);
}

.contact-info {
    flex: 1;
}

.contact-form-container {
    flex: 1;
}

.contact-item {
    margin-bottom: var(--spacing-lg);
}

.contact-item h3 {
    margin-bottom: var(--spacing-xs);
    color: hsl(var(--text-dark));
    font-size: 1.2rem;
}

.contact-item p {
    color: hsl(var(--text-medium));
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-round);
    background-color: hsl(var(--bg-light));
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background-color: hsl(var(--primary-color));
    transform: translateY(-3px);
}

.social-links img {
    width: 20px;
    height: 20px;
}

.contact-form {
    background-color: hsl(var(--bg-light));
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid hsla(var(--text-light), 0.3);
    border-radius: var(--border-radius-md);
    background-color: hsl(var(--bg-white));
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: hsl(var(--primary-color));
    outline: none;
}

.error-message {
    color: hsl(var(--error-color));
    font-size: 0.85rem;
    margin-top: var(--spacing-xs);
    display: none;
}

.error-message.visible {
    display: block;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 0.95rem;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: hsl(var(--bg-white));
    border: 1px solid hsla(var(--text-light), 0.3);
    border-radius: var(--border-radius-sm);
}

.checkbox-container:hover input ~ .checkmark {
    background-color: hsl(var(--bg-light));
}

.checkbox-container input:checked ~ .checkmark {
    background-color: hsl(var(--primary-color));
    border-color: hsl(var(--primary-color));
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.contact-form .btn {
    width: 100%;
    margin-top: var(--spacing-md);
}

/* --------------------- */
/* Footer                */
/* --------------------- */
.footer {
    background-color: hsl(var(--bg-dark));
    color: hsl(var(--bg-white));
    padding-top: var(--spacing-xxl);
    margin-top: auto;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    flex: 1 1 200px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-links {
    flex: 3 1 600px;
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
}

.footer-link-group {
    flex: 1 1 160px;
}

.footer-link-group h4 {
    color: hsl(var(--bg-white));
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.footer-link-group ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-link-group ul li a {
    color: hsla(var(--bg-white), 0.7);
    transition: color var(--transition-fast);
}

.footer-link-group ul li a:hover {
    color: hsl(var(--bg-white));
}

.footer-link-group ul li {
    color: hsla(var(--bg-white), 0.7);
}

.footer-bottom {
    padding: var(--spacing-lg) 0;
    border-top: 1px solid hsla(var(--bg-white), 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.footer-bottom p {
    margin-bottom: 0;
    color: hsla(var(--bg-white), 0.7);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--border-radius-round);
    background-color: hsla(var(--bg-white), 0.1);
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background-color: hsla(var(--bg-white), 0.2);
    transform: translateY(-3px);
}

.footer-social img {
    width: 16px;
    height: 16px;
}

/* --------------------- */
/* Cookie Banner         */
/* --------------------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: hsl(var(--bg-dark));
    color: hsl(var(--bg-white));
    padding: var(--spacing-lg);
    z-index: 1001;
    box-shadow: var(--shadow-xl);
    display: none;
}

.cookie-banner.visible {
    display: block;
}

.cookie-content {
    max-width: 900px;
    margin: 0 auto;
}

.cookie-content h3 {
    color: hsl(var(--bg-white));
    margin-bottom: var(--spacing-sm);
}

.cookie-content > p {
    color: hsla(var(--bg-white), 0.7);
    margin-bottom: var(--spacing-md);
}

.cookie-options {
    background-color: hsla(var(--bg-white), 0.05);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.cookie-option {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid hsla(var(--bg-white), 0.1);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option p {
    margin-left: 30px;
    font-size: 0.85rem;
    color: hsla(var(--bg-white), 0.6);
    margin-bottom: var(--spacing-xs);
}

.cookie-option .checkbox-container {
    margin-bottom: var(--spacing-xs);
    color: hsla(var(--bg-white), 0.9);
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: flex-end;
}

/* --------------------- */
/* Thanks Page           */
/* --------------------- */
.thanks-section {
    background-color: hsl(var(--bg-light));
    padding: var(--spacing-huge) 0;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    background-color: hsl(var(--bg-white));
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
}

.thanks-content h1 {
    margin-bottom: var(--spacing-md);
}

.thanks-content p {
    margin-bottom: var(--spacing-lg);
    color: hsl(var(--text-medium));
}

/* --------------------- */
/* Legal Pages           */
/* --------------------- */
.legal-section {
    padding: var(--spacing-xxl) 0;
}

.legal-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.legal-header h1 {
    margin-bottom: var(--spacing-sm);
}

.legal-header p {
    color: hsl(var(--text-medium));
}

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

.legal-section-item {
    margin-bottom: var(--spacing-xl);
}

.legal-section-item h2 {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-xs);
    border-bottom: 1px solid hsl(var(--bg-gray));
}

.legal-section-item h3 {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.legal-section-item p {
    margin-bottom: var(--spacing-md);
}

.legal-section-item ul,
.legal-section-item ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

.legal-section-item ul li,
.legal-section-item ol li {
    margin-bottom: var(--spacing-xs);
    list-style: disc;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--spacing-lg);
}

.cookie-table th,
.cookie-table td {
    padding: var(--spacing-sm);
    text-align: left;
    border: 1px solid hsl(var(--bg-gray));
}

.cookie-table th {
    background-color: hsl(var(--bg-light));
    font-weight: 600;
}

.cookie-table tr:nth-child(even) {
    background-color: hsl(var(--bg-light));
}

/* --------------------- */
/* Responsive Styles     */
/* --------------------- */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-section .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-stats {
        width: 100%;
    }
    
    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: hsl(var(--bg-white));
        box-shadow: var(--shadow-md);
        padding: var(--spacing-md) 0;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        z-index: 1000;
    }
    
    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-list a {
        display: block;
        padding: var(--spacing-sm) var(--spacing-lg);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
    
    section {
        padding: var(--spacing-xl) 0;
    }
    
    .footer-top {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .footer-link-group {
        flex: 1 1 auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-item {
        flex: 1 1 100%;
    }
}
