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

:root {
    /* Colors using HSL format */
    --primary: 217 91% 60%; /* #3B82F6 */
    --primary-dark: 217 91% 50%; /* #2563EB */
    --primary-light: 214 95% 93%; /* #DBEAFE */
    --secondary: 142 76% 36%; /* #059669 */
    --accent: 45 93% 47%; /* #EAB308 */
    --background: 210 11% 98%; /* #F8FAFC */
    --surface: 0 0% 100%; /* #FFFFFF */
    --text-primary: 222 84% 5%; /* #0F172A */
    --text-secondary: 215 25% 27%; /* #334155 */
    --text-muted: 215 16% 47%; /* #64748B */
    --border: 214 32% 91%; /* #E2E8F0 */
    --shadow: 215 25% 27% / 0.1; /* #334155 with opacity */
    --success: 142 76% 36%; /* #059669 */
    --warning: 45 93% 47%; /* #EAB308 */
    --error: 0 84% 60%; /* #EF4444 */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: hsl(var(--text-primary));
    background-color: hsl(var(--background));
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: hsl(var(--text-secondary));
}

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

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-hero, .btn-text {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

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

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

.btn-secondary {
    background-color: hsl(var(--border));
    color: hsl(var(--text-primary));
}

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

.btn-hero {
    background-color: hsl(var(--accent));
    color: hsl(var(--text-primary));
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-hero:hover {
    background-color: hsl(45 93% 40%);
    color: hsl(var(--text-primary));
    transform: translateY(-2px);
}

.btn-text {
    background: none;
    color: hsl(var(--primary));
    padding: 8px 16px;
}

.btn-text:hover {
    background-color: hsl(var(--primary-light));
}

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

.nav {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--text-primary));
}

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

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

.nav-menu a {
    font-weight: 500;
    color: hsl(var(--text-secondary));
    transition: color 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

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

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

.service-card {
    background: hsl(var(--surface));
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px hsl(var(--shadow));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px hsl(var(--shadow));
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

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

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

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

.about-text h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

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

.about-features li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: hsl(var(--text-secondary));
}

.about-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(var(--success));
    font-weight: bold;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: hsl(var(--surface));
    border-radius: 12px;
    box-shadow: 0 5px 15px hsl(var(--shadow));
}

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

.stat-label {
    color: hsl(var(--text-secondary));
    font-weight: 600;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background-color: hsl(var(--surface));
}

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

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

.review-card {
    background: hsl(var(--background));
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px hsl(var(--shadow));
}

.review-stars {
    color: hsl(var(--accent));
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: hsl(var(--text-secondary));
}

.review-author {
    font-weight: 600;
    color: hsl(var(--text-primary));
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-dark)));
    color: white;
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.newsletter p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

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

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

.newsletter-form input:focus {
    outline: 2px solid hsl(var(--accent));
}

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

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: hsl(var(--text-primary));
}

.contact-item p {
    color: hsl(var(--text-secondary));
    margin: 0;
}

.contact-form {
    background: hsl(var(--surface));
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px hsl(var(--shadow));
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 1rem;
    border: 2px solid hsl(var(--border));
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.contact-form button {
    width: 100%;
}

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

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
}

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

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

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

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

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    padding: 8px 16px;
    background-color: hsl(var(--primary));
    color: white;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: hsl(var(--text-primary));
    color: white;
    padding: 1rem;
    z-index: 1001;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

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

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

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

.cookie-modal-content {
    background-color: hsl(var(--surface));
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid hsl(var(--border));
    border-radius: 8px;
}

.cookie-category label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    margin-top: 0.25rem;
}

.cookie-category span {
    font-size: 0.9rem;
    color: hsl(var(--text-secondary));
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Blog Styles */
.blog-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, hsl(var(--primary-light)), hsl(var(--background)));
    text-align: center;
}

.blog-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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

.blog-card {
    background: hsl(var(--surface));
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px hsl(var(--shadow));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px hsl(var(--shadow));
}

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

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

.blog-card-content {
    padding: 1.5rem;
}

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

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

.blog-category {
    color: hsl(var(--primary));
    font-weight: 600;
}

.blog-card h2 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.blog-card h2 a {
    color: hsl(var(--text-primary));
    transition: color 0.3s ease;
}

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

.blog-read-more {
    color: hsl(var(--primary));
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
    transition: color 0.3s ease;
}

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

/* Article Styles */
.breadcrumb {
    padding: 100px 0 20px;
    background-color: hsl(var(--background));
}

.breadcrumb a {
    color: hsl(var(--text-muted));
    transition: color 0.3s ease;
}

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

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

.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: hsl(var(--text-muted));
}

.article-category {
    color: hsl(var(--primary));
    font-weight: 600;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.article-lead {
    font-size: 1.25rem;
    color: hsl(var(--text-secondary));
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.article-image {
    margin-bottom: 3rem;
    text-align: center;
}

.article-svg {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px hsl(var(--shadow));
}

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

.article-body h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: hsl(var(--text-primary));
}

.article-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: hsl(var(--text-primary));
}

.article-body h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: hsl(var(--text-primary));
}

.article-body ul, .article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.article-highlight {
    background-color: hsl(var(--primary-light));
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid hsl(var(--primary));
}

.article-highlight h4 {
    margin-top: 0;
    color: hsl(var(--primary-dark));
}

.article-cta {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-dark)));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.article-cta h3 {
    margin-bottom: 1rem;
    color: white;
}

.article-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.article-footer {
    max-width: 800px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid hsl(var(--border));
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.article-tags, .article-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.tag {
    background-color: hsl(var(--primary-light));
    color: hsl(var(--primary-dark));
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.article-share a {
    color: hsl(var(--text-muted));
    transition: color 0.3s ease;
}

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

/* Related Articles */
.related-articles {
    padding: 60px 0;
    background-color: hsl(var(--background));
}

.related-articles h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.related-card {
    background: hsl(var(--surface));
    padding: 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: hsl(var(--text-primary));
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px hsl(var(--shadow));
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px hsl(var(--shadow));
    color: hsl(var(--text-primary));
}

.related-card h3 {
    margin-bottom: 0.5rem;
    color: hsl(var(--primary));
}

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

/* Legal Content */
.legal-content {
    padding: 120px 0 80px;
    background-color: hsl(var(--surface));
}

.legal-content h1 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.last-updated {
    text-align: center;
    color: hsl(var(--text-muted));
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.legal-section h2 {
    color: hsl(var(--primary));
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid hsl(var(--border));
    padding-bottom: 0.5rem;
}

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

.legal-section h4 {
    color: hsl(var(--text-primary));
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-section ul, .legal-section ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

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

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you h1 {
    color: hsl(var(--success));
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.25rem;
    color: hsl(var(--text-secondary));
    margin-bottom: 2rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.thank-you-info {
    text-align: left;
    background-color: hsl(var(--background));
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px hsl(var(--shadow));
}

.thank-you-info h3 {
    color: hsl(var(--primary));
    margin-bottom: 1rem;
    text-align: center;
}

.thank-you-info ul {
    list-style: none;
    padding: 0;
}

.thank-you-info li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: hsl(var(--text-secondary));
}

.thank-you-info li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(var(--success));
    font-weight: bold;
}

.contact-urgent {
    background-color: hsl(var(--primary-light));
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid hsl(var(--primary));
}

.contact-urgent h3 {
    color: hsl(var(--primary-dark));
    margin-bottom: 1rem;
}

.contact-urgent p {
    margin-bottom: 0.5rem;
    color: hsl(var(--text-secondary));
}

/* Cookies Table */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: hsl(var(--surface));
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px hsl(var(--shadow));
}

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

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

.cookies-table tr:last-child td {
    border-bottom: none;
}

.cookie-settings-btn {
    margin: 1rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: hsl(var(--surface));
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px hsl(var(--shadow));
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

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

    .hero p {
        font-size: 1.1rem;
    }

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

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

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }

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

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

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .article-lead {
        font-size: 1.1rem;
    }

    .article-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }

    .thank-you h1 {
        font-size: 2rem;
    }

    .cookies-table {
        font-size: 0.9rem;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 0.75rem;
    }
}

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

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

    .services {
        padding: 60px 0;
    }

    .about {
        padding: 60px 0;
    }

    .contact {
        padding: 60px 0;
    }

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

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

    .legal-content {
        padding: 100px 0 60px;
    }

    .thank-you {
        padding: 100px 0 60px;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

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

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

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

    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }

    .article-highlight,
    .article-cta {
        background: #f5f5f5 !important;
        color: #000 !important;
        border: 1px solid #ccc;
    }
}

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

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

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