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

/* CSS Custom Properties */
:root {
    /* Primary Colors */
    --primary: 219 82% 51%; /* #2563eb */
    --primary-dark: 221 83% 53%; /* #1d4ed8 */
    --primary-light: 214 95% 93%; /* #dbeafe */
    
    /* Secondary Colors */
    --secondary: 142 71% 45%; /* #10b981 */
    --accent: 262 83% 58%; /* #8b5cf6 */
    --warning: 45 93% 47%; /* #f59e0b */
    
    /* Neutral Colors */
    --background: 210 11% 98%; /* #F5F7FA */
    --surface: 0 0% 100%; /* #ffffff */
    --text-primary: 215 25% 27%; /* #374151 */
    --text-secondary: 215 13% 65%; /* #9ca3af */
    --text-muted: 215 20% 65%; /* #6b7280 */
    --border: 214 13% 91%; /* #e5e7eb */
    --shadow: 215 25% 27%; /* #374151 */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(219 82% 51%) 0%, hsl(262 83% 58%) 100%);
    --gradient-secondary: linear-gradient(135deg, hsl(142 71% 45%) 0%, hsl(174 72% 56%) 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
}

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

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: hsl(var(--text-primary));
    background-color: hsl(var(--background));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Elements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: hsl(var(--text-primary));
    margin-bottom: var(--space-4);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
    margin-bottom: var(--space-4);
    color: hsl(var(--text-secondary));
}

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

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

/* Layout Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-6);
    }
}

.section {
    padding: var(--space-20) 0;
}

/* Button Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-6);
    border: none;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
    color: white;
}

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

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

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

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

/* Header and Navigation */
.header {
    background-color: hsl(var(--surface));
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: var(--space-4) 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: hsl(var(--primary));
    text-decoration: none;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: var(--space-8);
    list-style: none;
}

.nav-link {
    font-weight: 500;
    color: hsl(var(--text-primary));
    transition: color var(--transition-fast);
}

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

/* Mobile Navigation */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: var(--space-1);
}

.bar {
    width: 25px;
    height: 3px;
    background-color: hsl(var(--text-primary));
    transition: var(--transition-fast);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
    
    .hamburger {
        display: none;
    }
}

/* Mobile Menu */
.nav-menu.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: hsl(var(--surface));
    flex-direction: column;
    padding: var(--space-4);
    box-shadow: var(--shadow-md);
    gap: var(--space-4);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: var(--space-8);
}

.hero h1 {
    font-size: var(--font-size-5xl);
    margin-bottom: var(--space-4);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h2 {
    font-size: var(--font-size-2xl);
    color: hsl(var(--text-secondary));
    margin-bottom: var(--space-6);
}

.hero p {
    font-size: var(--font-size-lg);
    color: hsl(var(--text-muted));
    margin-bottom: var(--space-8);
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Section */
.services {
    padding: var(--space-20) 0;
    background-color: hsl(var(--surface));
}

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

.section-header h2 {
    margin-bottom: var(--space-4);
}

.section-header p {
    font-size: var(--font-size-lg);
    color: hsl(var(--text-muted));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
}

.service-card {
    background-color: hsl(var(--surface));
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

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

.service-icon {
    margin-bottom: var(--space-6);
}

.service-card h3 {
    margin-bottom: var(--space-4);
    color: hsl(var(--text-primary));
}

.service-card p {
    color: hsl(var(--text-muted));
}

/* About Section */
.about {
    padding: var(--space-20) 0;
    background-color: hsl(var(--background));
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text h2 {
    margin-bottom: var(--space-6);
}

.about-text p {
    margin-bottom: var(--space-6);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: var(--font-size-3xl);
    color: hsl(var(--primary));
    margin-bottom: var(--space-2);
}

.stat p {
    color: hsl(var(--text-muted));
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
    padding: var(--space-20) 0;
    background-color: hsl(var(--surface));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.testimonial-card {
    background-color: hsl(var(--background));
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    margin-bottom: var(--space-6);
}

.testimonial-content p {
    font-style: italic;
    font-size: var(--font-size-lg);
    color: hsl(var(--text-primary));
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.author-info h4 {
    margin-bottom: var(--space-1);
    font-size: var(--font-size-base);
}

.author-info p {
    color: hsl(var(--text-muted));
    font-size: var(--font-size-sm);
    margin-bottom: 0;
}

/* Newsletter Section */
.newsletter {
    padding: var(--space-20) 0;
    background: var(--gradient-primary);
    color: white;
}

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

.newsletter-text h2 {
    color: white;
    margin-bottom: var(--space-4);
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
}

.newsletter-form {
    display: flex;
    gap: var(--space-4);
    max-width: 400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form .form-group {
    flex: 1;
    min-width: 250px;
    display: flex;
    gap: var(--space-2);
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-3);
    border: none;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
}

/* Contact Section */
.contact {
    padding: var(--space-20) 0;
    background-color: hsl(var(--background));
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-item {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-details h4 {
    margin-bottom: var(--space-2);
    color: hsl(var(--text-primary));
}

.contact-details p {
    color: hsl(var(--text-muted));
    margin-bottom: 0;
}

/* Form Styles */
.form-group {
    margin-bottom: var(--space-6);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: 600;
    color: hsl(var(--text-primary));
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-3);
    border: 2px solid hsl(var(--border));
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    transition: border-color var(--transition-fast);
}

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

/* Footer */
.footer {
    background-color: hsl(var(--text-primary));
    color: white;
    padding: var(--space-16) 0 var(--space-8);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.footer-logo h3 {
    color: white;
    margin-bottom: 0;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-4);
}

.footer-section h4 {
    color: white;
    margin-bottom: var(--space-4);
}

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

.footer-section ul li {
    margin-bottom: var(--space-2);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: var(--space-4);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: background-color var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--space-6);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* Blog Styles */
.blog-header {
    padding: var(--space-20) 0 var(--space-12);
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    margin-top: 80px;
}

.blog-header h1 {
    color: white;
    margin-bottom: var(--space-4);
}

.blog-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-lg);
}

.blog-articles {
    padding: var(--space-20) 0;
    background-color: hsl(var(--background));
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.article-card {
    background-color: hsl(var(--surface));
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

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

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

.article-content {
    padding: var(--space-6);
}

.article-meta {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
    font-size: var(--font-size-sm);
}

.article-date {
    color: hsl(var(--text-muted));
}

.article-category {
    background-color: hsl(var(--primary-light));
    color: hsl(var(--primary));
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.article-card h2 {
    margin-bottom: var(--space-4);
}

.article-card h2 a {
    color: hsl(var(--text-primary));
    text-decoration: none;
}

.article-card h2 a:hover {
    color: hsl(var(--primary));
}

.read-more {
    color: hsl(var(--primary));
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-4);
}

.read-more:hover {
    color: hsl(var(--primary-dark));
}

/* Single Article Styles */
.article-single {
    padding: var(--space-20) 0;
    margin-top: 80px;
}

.article-header {
    margin-bottom: var(--space-12);
}

.breadcrumb {
    margin-bottom: var(--space-4);
    color: hsl(var(--text-muted));
}

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

.article-header .article-meta {
    margin-bottom: var(--space-6);
}

.reading-time {
    color: hsl(var(--text-muted));
}

.article-featured-image {
    width: 100%;
    margin-bottom: var(--space-8);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

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

.article-body .lead {
    font-size: var(--font-size-lg);
    font-weight: 500;
    color: hsl(var(--text-primary));
    margin-bottom: var(--space-8);
}

.article-body h2 {
    margin-top: var(--space-10);
    margin-bottom: var(--space-6);
    color: hsl(var(--text-primary));
}

.article-body h3 {
    margin-top: var(--space-8);
    margin-bottom: var(--space-4);
    color: hsl(var(--text-primary));
}

.article-body ul,
.article-body ol {
    margin-bottom: var(--space-6);
    padding-left: var(--space-6);
}

.article-body li {
    margin-bottom: var(--space-2);
    color: hsl(var(--text-secondary));
}

.article-footer {
    max-width: 800px;
    margin: var(--space-12) auto 0;
    padding-top: var(--space-8);
    border-top: 1px solid hsl(var(--border));
}

.article-tags {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
}

.tag {
    background-color: hsl(var(--primary-light));
    color: hsl(var(--primary));
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.article-share {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.article-share h4 {
    margin-bottom: 0;
    font-size: var(--font-size-base);
}

.article-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: hsl(var(--primary));
    color: white;
    border-radius: 50%;
    transition: transform var(--transition-fast);
}

.article-share a:hover {
    transform: scale(1.1);
    color: white;
}

/* Related Articles */
.related-articles {
    max-width: 800px;
    margin: var(--space-16) auto 0;
    padding-top: var(--space-12);
    border-top: 1px solid hsl(var(--border));
}

.related-articles h3 {
    margin-bottom: var(--space-8);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
}

.related-card {
    background-color: hsl(var(--surface));
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.related-card h4 {
    margin-bottom: var(--space-3);
}

.related-card h4 a {
    color: hsl(var(--text-primary));
}

.related-card h4 a:hover {
    color: hsl(var(--primary));
}

.related-card p {
    color: hsl(var(--text-muted));
    font-size: var(--font-size-sm);
    margin-bottom: 0;
}

/* Legal Pages */
.legal-page {
    padding: var(--space-20) 0;
    margin-top: 80px;
}

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

.legal-header h1 {
    margin-bottom: var(--space-4);
}

.last-updated {
    color: hsl(var(--text-muted));
    font-style: italic;
}

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

.legal-content h2 {
    margin-top: var(--space-10);
    margin-bottom: var(--space-6);
    color: hsl(var(--primary));
}

.legal-content h3 {
    margin-top: var(--space-8);
    margin-bottom: var(--space-4);
    color: hsl(var(--text-primary));
}

.legal-content ul,
.legal-content ol {
    margin-bottom: var(--space-6);
    padding-left: var(--space-6);
}

.legal-content li {
    margin-bottom: var(--space-2);
}

.contact-info {
    background-color: hsl(var(--primary-light));
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    margin: var(--space-8) 0;
}

/* Cookie Management */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: hsl(var(--text-primary));
    color: white;
    padding: var(--space-4);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

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

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

.cookie-buttons {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    padding: var(--space-4);
}

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

.cookie-modal-content {
    background-color: hsl(var(--surface));
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    margin-bottom: var(--space-6);
}

.cookie-category {
    margin-bottom: var(--space-6);
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-weight: 600;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    width: auto;
}

.cookie-category p {
    margin-top: var(--space-2);
    margin-bottom: 0;
    color: hsl(var(--text-muted));
    font-size: var(--font-size-sm);
}

.cookie-modal-buttons {
    display: flex;
    gap: var(--space-3);
    justify-content: flex-end;
    margin-top: var(--space-6);
}

/* Cookie Policy Tables */
.cookie-table {
    margin: var(--space-6) 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: hsl(var(--surface));
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

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

.cookie-settings-link {
    text-align: center;
    margin-top: var(--space-8);
}

/* Thank You Page */
.thank-you-section {
    padding: var(--space-20) 0;
    margin-top: 80px;
    text-align: center;
}

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

.thank-you-icon {
    margin-bottom: var(--space-8);
}

.thank-you-content h1 {
    color: hsl(var(--secondary));
    margin-bottom: var(--space-6);
}

.thank-you-message {
    font-size: var(--font-size-lg);
    color: hsl(var(--text-secondary));
    margin-bottom: var(--space-8);
}

.thank-you-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    margin-bottom: var(--space-12);
    flex-wrap: wrap;
}

.next-steps {
    text-align: left;
    background-color: hsl(var(--surface));
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-8);
}

.next-steps h3 {
    text-align: center;
    margin-bottom: var(--space-6);
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.next-steps li i {
    color: hsl(var(--secondary));
}

.contact-alternatives {
    text-align: left;
}

.contact-alternatives h3 {
    text-align: center;
    margin-bottom: var(--space-6);
}

.contact-options {
    display: flex;
    gap: var(--space-6);
    justify-content: center;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: hsl(var(--text-secondary));
}

.contact-option i {
    color: hsl(var(--primary));
}

/* Special Content Boxes */
.example-box,
.budget-breakdown,
.sample-plan,
.action-steps,
.security-checklist {
    background-color: hsl(var(--surface));
    border: 2px solid hsl(var(--primary-light));
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin: var(--space-8) 0;
}

.example-box h4,
.budget-breakdown h3,
.sample-plan h3,
.action-steps h3,
.security-checklist h3 {
    color: hsl(var(--primary));
    margin-bottom: var(--space-4);
}

.budget-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
}

.budget-item {
    text-align: center;
    padding: var(--space-4);
    background-color: hsl(var(--background));
    border-radius: var(--radius-lg);
}

.budget-item h3 {
    color: hsl(var(--primary));
    margin-bottom: var(--space-3);
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    color: hsl(var(--text-secondary));
}

.checklist li::before {
    content: "✓";
    color: hsl(var(--secondary));
    font-weight: bold;
    font-size: var(--font-size-lg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: var(--font-size-3xl);
    }
    
    .hero h2 {
        font-size: var(--font-size-xl);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .form-group {
        min-width: auto;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .budget-breakdown {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .hero-buttons,
    .newsletter,
    .social-links {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: var(--space-8) 0;
    }
    
    .article-single {
        margin-top: 0;
    }
}

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

/* Focus Styles */
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
a:focus-visible {
    outline: 2px solid hsl(var(--primary));
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --text-primary: 0 0% 0%;
        --text-secondary: 0 0% 20%;
        --background: 0 0% 100%;
        --surface: 0 0% 95%;
        --border: 0 0% 50%;
    }
}
