/* 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: #2c2c2c;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
}

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

ul {
    list-style: none;
}

/* CSS Variables for Colors */
:root {
    /* Wood-inspired color palette */
    --primary-wood: #8B4513;
    --secondary-wood: #A0522D;
    --light-wood: #DEB887;
    --dark-wood: #654321;
    --warm-brown: #7D4F39;
    
    /* Neutral colors */
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --text-white: #ffffff;
    --background-light: #f8f5f2;
    --background-white: #ffffff;
    
    /* Accent colors */
    --accent-gold: #D4A574;
    --accent-green: #8B9DC3;
    --border-light: #e5e5e5;
    --shadow-light: rgba(0, 0, 0, 0.1);
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --card-border-radius: 12px;
    --button-border-radius: 6px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

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

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

h3 {
    font-size: 1.8rem;
    line-height: 1.4;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 16px;
    color: var(--text-light);
}

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 32px;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--button-border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 16px;
}

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

.btn-primary:hover {
    background-color: var(--dark-wood);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--light-wood);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--secondary-wood);
    color: var(--text-white);
}

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

.btn-outline:hover {
    background-color: var(--primary-wood);
    color: var(--text-white);
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

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

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

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-wood);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-wood);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--primary-wood);
    border-radius: 2px;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--text-white);
    padding: 20px;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-buttons button {
    padding: 10px 16px;
    border: none;
    border-radius: var(--button-border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--light-wood) 100%);
    padding: var(--section-padding);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    color: var(--primary-wood);
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--warm-brown);
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

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

.hero-svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px var(--shadow-light));
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-wood) 0%, var(--dark-wood) 100%);
    color: var(--text-white);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    color: var(--text-white);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    color: white;
    margin-bottom: 0;
}

/* Sections */
section {
    padding: var(--section-padding);
}

.section-svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px var(--shadow-light));
}

/* Content Split Layout */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-split.reverse {
    direction: rtl;
}

.content-split.reverse > * {
    direction: ltr;
}

.content-text h2 {
    color: var(--primary-wood);
    margin-bottom: 24px;
}

/* Services Overview */
.services-overview {
    background-color: var(--background-light);
}

.services-overview h2 {
    text-align: center;
    color: var(--primary-wood);
    margin-bottom: 48px;
}

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

.service-card {
    background-color: var(--background-white);
    padding: 40px 30px;
    border-radius: var(--card-border-radius);
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: transform 0.3s ease;
}

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

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

.service-card h3 {
    color: var(--primary-wood);
    margin-bottom: 16px;
}

/* Feature Lists */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.feature-item h4 {
    color: var(--primary-wood);
    margin-bottom: 4px;
}

/* Stats */
.stats-grid, .satisfaction-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    margin: 32px 0;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.project-card {
    background-color: var(--background-white);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: transform 0.3s ease;
}

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

.project-image {
    height: 200px;
    overflow: hidden;
}

.project-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-info {
    padding: 24px;
}

.project-info h3 {
    color: var(--primary-wood);
    margin-bottom: 8px;
}

.project-location {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-wood) 0%, var(--dark-wood) 100%);
    color: var(--text-white);
    text-align: center;
}

.cta-content h2 {
    color: var(--text-white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Forms */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--button-border-radius);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    background-color: var(--background-white);
    padding: 32px;
    border-radius: var(--card-border-radius);
    box-shadow: 0 5px 20px var(--shadow-light);
}

.testimonial-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--light-wood) 100%);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.client-info h3 {
    margin-bottom: 4px;
}

.client-location {
    font-size: 0.9rem;
    color: var(--text-light);
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.rating-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-project {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Blog */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.article-card {
    background-color: var(--background-white);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: transform 0.3s ease;
}

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

.article-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background-color: var(--background-white);
    border-radius: var(--card-border-radius);
    padding: 40px;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 24px;
}

.article-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-category {
    background-color: var(--light-wood);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.article-content h3 a {
    color: var(--primary-wood);
}

.read-more {
    color: var(--primary-wood);
    font-weight: 500;
}

/* Blog Article Pages */
.article-header {
    background: linear-gradient(135deg, var(--primary-wood) 0%, var(--dark-wood) 100%);
    color: var(--text-white);
    padding: 120px 0 80px;
}

.breadcrumb {
    margin-bottom: 24px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--text-white);
}

.article-header h1 {
    color: var(--text-white);
    margin-bottom: 16px;
}

.article-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    color: white;
    margin-bottom: 32px;
}

.article-hero-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--card-border-radius);
}

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

.article-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.article-body {
    max-width: none;
}

.article-body h2 {
    color: var(--primary-wood);
    margin-top: 48px;
    margin-bottom: 24px;
}

.article-body h3 {
    color: var(--warm-brown);
    margin-top: 32px;
    margin-bottom: 16px;
}

.article-body blockquote {
    background-color: var(--background-light);
    border-left: 4px solid var(--primary-wood);
    padding: 24px;
    margin: 32px 0;
    font-style: italic;
}

.article-body blockquote cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-wood);
}

.article-highlight {
    background-color: var(--background-light);
    padding: 32px;
    border-radius: var(--card-border-radius);
    margin: 32px 0;
}

.article-sidebar {
    background-color: var(--background-light);
    padding: 32px;
    border-radius: var(--card-border-radius);
    height: fit-content;
}

.author-bio {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.author-title {
    color: var(--primary-wood);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.related-articles {
    margin-top: 32px;
}

.related-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.related-image {
    width: 60px;
    height: 60px;
    border-radius: var(--button-border-radius);
}

/* Contact */
.contact-section {
    padding: var(--section-padding);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--primary-wood);
    margin-bottom: 8px;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 8px;
}

.opening-hours {
    margin-top: 32px;
}

.hours-grid {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.contact-form {
    background-color: var(--background-light);
    padding: 40px;
    border-radius: var(--card-border-radius);
}

.form-intro {
    margin-bottom: 32px;
    color: var(--text-light);
}

.form-info {
    margin-top: 32px;
    padding: 24px;
    background-color: var(--background-white);
    border-radius: var(--button-border-radius);
    border-left: 4px solid var(--primary-wood);
}

.form-info ul {
    list-style: none;
    margin-top: 16px;
}

.form-info li {
    margin-bottom: 8px;
    color: var(--text-light);
}

/* Map Section */
.map-section {
    background-color: var(--background-light);
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.map-placeholder {
    position: relative;
    height: 400px;
    background-color: var(--background-white);
    border-radius: var(--card-border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.map-svg {
    width: 200px;
    height: 200px;
    opacity: 0.3;
}

.map-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: var(--button-border-radius);
    text-align: center;
}

.directions, .public-transport {
    margin-top: 24px;
}

.directions h4, .public-transport h4 {
    color: var(--primary-wood);
    margin-bottom: 12px;
}

.directions ul, .public-transport ul {
    margin-top: 8px;
}

.directions li, .public-transport li {
    margin-bottom: 4px;
    color: var(--text-light);
}

/* Legal Pages */
.legal-header {
    background: linear-gradient(135deg, var(--primary-wood) 0%, var(--dark-wood) 100%);
    color: var(--text-white);
    padding: 120px 0 80px;
    text-align: center;
}

.legal-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 0;
}

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

.legal-text h2 {
    color: var(--primary-wood);
    margin-top: 48px;
    margin-bottom: 24px;
}

.legal-text h3 {
    color: var(--warm-brown);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-text ul, .legal-text ol {
    margin-left: 20px;
    margin-bottom: 16px;
}

.legal-text li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.legal-footer {
    font-style: italic;
    color: var(--text-light);
    text-align: center;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

/* Cookie Policy Specific */
.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

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

.cookie-preferences {
    background-color: var(--background-light);
    padding: 32px;
    border-radius: var(--card-border-radius);
    margin: 32px 0;
}

.preference-item {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.preference-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.preference-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.preference-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

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

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

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

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

.always-on {
    background-color: var(--accent-gold);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.preference-actions {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--text-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

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

.footer-brand h3 {
    color: var(--text-white);
    margin-bottom: 0;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.footer-section h4 {
    color: var(--text-white);
    margin-bottom: 16px;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

.contact-info {
    margin-top: 16px;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.contact-info a {
    color: var(--light-wood);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

/* Thanks Page */
.thanks-section {
    padding: var(--section-padding);
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 32px;
}

.success-svg {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 5px 15px var(--shadow-light));
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 48px;
}

.thanks-details {
    display: grid;
    gap: 32px;
    margin: 48px 0;
}

.detail-item {
    display: flex;
    gap: 16px;
    text-align: left;
    padding: 24px;
    background-color: var(--background-light);
    border-radius: var(--card-border-radius);
}

.detail-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.detail-item h3 {
    color: var(--primary-wood);
    margin-bottom: 8px;
}

/* Newsletter */
.newsletter-signup, .newsletter-thanks {
    background-color: var(--background-light);
    text-align: center;
}

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

.newsletter-form {
    margin-top: 32px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 16px;
    align-items: center;
}

.newsletter-form input {
    flex: 1;
    margin-bottom: 0;
}

.newsletter-form button {
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .content-split,
    .contact-content,
    .map-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .article-featured {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--background-white);
        box-shadow: 0 5px 20px var(--shadow-light);
        flex-direction: column;
        padding: 32px 20px;
        gap: 20px;
        transform: translateY(-100vh);
        transition: transform 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        min-height: 60vh;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid,
    .projects-grid,
    .testimonials-grid,
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .stats-grid,
    .satisfaction-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .article-content .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
    
    .stats-grid,
    .satisfaction-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .article-card,
    .service-card,
    .project-card {
        margin: 0 16px;
    }
    
    .contact-form,
    .legal-content {
        padding: 24px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .nav-toggle,
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        display: none;
    }
    
    main {
        margin-top: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .page-header {
        background: none;
        color: var(--text-dark);
    }
}

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

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --primary-wood: #000000;
        --secondary-wood: #333333;
        --text-light: #000000;
        --border-light: #000000;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--primary-wood);
    outline-offset: 2px;
}

/* Skip link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-wood);
    color: var(--text-white);
    padding: 8px;
    border-radius: 4px;
    z-index: 1000;
    text-decoration: none;
}

.skip-link:focus {
    top: 6px;
}
