/* CSS Custom Properties */
:root {
    --primary-color: 210 85% 45%; /* #1E40AF */
    --primary-dark: 210 85% 35%; /* #1D4ED8 */
    --secondary-color: 45 100% 50%; /* #FFC107 */
    --success-color: 120 60% 50%; /* #4CAF50 */
    --danger-color: 0 85% 60%; /* #F44336 */
    --warning-color: 35 100% 50%; /* #FF9800 */
    
    --text-primary: 220 13% 18%; /* #2D3748 */
    --text-secondary: 220 9% 46%; /* #718096 */
    --text-light: 220 14% 96%; /* #F7FAFC */
    
    --background: 210 11% 98%; /* #F5F7FA */
    --background-alt: 210 40% 98%; /* #FFFFFF */
    --border-color: 220 13% 91%; /* #E2E8F0 */
    --border-light: 220 14% 96%; /* #F7FAFC */
    
    --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);
    
    --border-radius: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
    
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --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;
    
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    
    --max-width: 1200px;
    --container-padding: 1rem;
    
    --transition: all 0.3s ease;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    color: hsl(var(--text-primary));
    background-color: hsl(var(--background));
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: var(--font-size-lg);
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
}

/* Hero button specific styling */
.hero .btn {
    padding: 1.25rem 2.5rem;
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-xl);
}

.btn-primary {
    background: linear-gradient(135deg, hsl(var(--primary-color)), hsl(var(--primary-dark)));
    color: hsl(var(--text-light));
    box-shadow: var(--shadow-md);
}

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

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

.btn-secondary:hover {
    background-color: hsl(var(--border-light));
    transform: translateY(-1px);
    color: hsl(var(--text-primary));
}

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--container-padding);
    max-width: var(--max-width);
    margin: 0 auto;
}

.nav-brand {
    font-size: var(--font-size-xl);
    font-weight: 700;
}

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

.nav-brand i {
    margin-right: 0.5rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background-color: hsl(var(--primary-color));
}

.nav-toggle {
    display: none;
    font-size: var(--font-size-xl);
    color: hsl(var(--text-primary));
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, hsl(var(--primary-color) / 0.3), hsl(var(--primary-dark) / 0.2));
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.hero-content {
    text-align: center;
    color: hsl(var(--text-light));
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: var(--line-height-tight);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: 2.5rem;
    line-height: var(--line-height-relaxed);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Sections */
section {
    padding: 5rem 0;
}

section h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: hsl(var(--text-primary));
}

section h2 i {
    color: hsl(var(--primary-color));
    margin-right: 0.75rem;
}

/* Services Section */
.services {
    background-color: hsl(var(--background-alt));
}

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

.service-card {
    background-color: hsl(var(--background));
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: hsl(var(--primary-color));
}

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

.service-card p {
    color: hsl(var(--text-secondary));
    margin-bottom: 1.5rem;
    line-height: var(--line-height-relaxed);
}

.service-card ul {
    text-align: left;
}

.service-card li {
    color: hsl(var(--text-secondary));
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(var(--success-color));
    font-weight: 600;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: var(--font-size-lg);
    color: hsl(var(--text-secondary));
    margin-bottom: 1.5rem;
    line-height: var(--line-height-relaxed);
}

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

.stat {
    text-align: center;
}

.stat i {
    font-size: var(--font-size-3xl);
    color: hsl(var(--primary-color));
    margin-bottom: 1rem;
}

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

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

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

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

.review-card {
    background-color: hsl(var(--background));
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-stars i {
    color: hsl(var(--secondary-color));
}

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

.review-author strong {
    color: hsl(var(--text-primary));
    display: block;
    margin-bottom: 0.25rem;
}

.review-author span {
    color: hsl(var(--text-secondary));
    font-size: var(--font-size-sm);
}

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

.newsletter h2 {
    color: hsl(var(--text-light));
}

.newsletter p {
    font-size: var(--font-size-lg);
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

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

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px hsl(var(--text-light) / 0.3);
}

/* Contact Section */
.contact {
    background-color: hsl(var(--background-alt));
}

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

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

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

.contact-item i {
    font-size: var(--font-size-xl);
    color: hsl(var(--primary-color));
    margin-top: 0.25rem;
}

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

.contact-item p {
    color: hsl(var(--text-secondary));
    line-height: var(--line-height-relaxed);
}

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

.contact-form h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 2rem;
    color: hsl(var(--text-primary));
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid hsl(var(--border-color));
    border-radius: var(--border-radius);
    font-size: var(--font-size-base);
    font-family: var(--font-family);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: hsl(var(--primary-color));
    box-shadow: 0 0 0 3px hsl(var(--primary-color) / 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Data Processing Agreement Styles */
.data-processing-agreement {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: hsl(var(--border-light));
    border-radius: var(--border-radius);
    border: 1px solid hsl(var(--border-color));
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    line-height: var(--line-height-relaxed);
}

.checkbox-container input[type="checkbox"] {
    margin: 0;
    width: auto;
    min-width: 20px;
    height: 20px;
    margin-top: 0.1rem;
    accent-color: hsl(var(--primary-color));
}

.agreement-text {
    font-size: var(--font-size-sm);
    color: hsl(var(--text-secondary));
    line-height: var(--line-height-relaxed);
}

.agreement-text a {
    color: hsl(var(--primary-color));
    text-decoration: underline;
    font-weight: 500;
}

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

/* Footer */
.footer {
    background-color: hsl(var(--text-primary));
    color: hsl(var(--text-light));
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section h3 i {
    color: hsl(var(--primary-color));
    margin-right: 0.5rem;
}

.footer-section h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: 1rem;
    color: hsl(var(--text-light));
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section ul a {
    color: hsl(var(--text-light));
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section ul a:hover {
    opacity: 1;
    color: hsl(var(--primary-color));
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: hsl(var(--primary-color));
    color: hsl(var(--text-light));
    border-radius: 50%;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid hsl(var(--text-light) / 0.2);
    opacity: 0.7;
}

/* Cookie Banner & Modal */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: hsl(var(--text-primary));
    color: hsl(var(--text-light));
    padding: 1rem;
    box-shadow: var(--shadow-xl);
    z-index: 1001;
    transform: translateY(100%);
    transition: var(--transition);
}

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

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

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

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

.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: 1002;
}

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

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

.cookie-modal-content h3 {
    margin-bottom: 1.5rem;
    color: hsl(var(--text-primary));
}

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

.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-weight: 600;
    color: hsl(var(--text-primary));
}

.cookie-category p {
    margin-top: 0.5rem;
    color: hsl(var(--text-secondary));
    font-size: var(--font-size-sm);
}

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

/* Blog Styles */
.blog-header {
    background-color: hsl(var(--background-alt));
    padding: 6rem 0 3rem;
    text-align: center;
}

.blog-header h1 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(var(--text-primary));
}

.blog-header h1 i {
    color: hsl(var(--primary-color));
    margin-right: 0.75rem;
}

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

.blog-section {
    padding: 3rem 0;
}

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

.blog-card {
    background-color: hsl(var(--background-alt));
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

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

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, hsl(var(--primary-color)), hsl(var(--primary-dark)));
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-icon {
    font-size: 3rem;
    color: hsl(var(--text-light));
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h2 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: left;
}

.blog-content h2 a {
    color: hsl(var(--text-primary));
}

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

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: var(--font-size-sm);
    color: hsl(var(--text-secondary));
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-content p {
    color: hsl(var(--text-secondary));
    line-height: var(--line-height-relaxed);
    margin-bottom: 1.5rem;
}

.read-more {
    color: hsl(var(--primary-color));
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

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

/* Article Styles */
.article-section {
    padding: 6rem 0 3rem;
}

.article-header {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: var(--font-size-sm);
    color: hsl(var(--text-secondary));
}

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

.breadcrumb i {
    margin: 0 0.5rem;
    font-size: 0.75rem;
}

.article-header h1 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(var(--text-primary));
    line-height: var(--line-height-tight);
}

.article-header h1 i {
    color: hsl(var(--primary-color));
    margin-right: 0.75rem;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: var(--font-size-sm);
    color: hsl(var(--text-secondary));
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: var(--line-height-relaxed);
}

.article-intro {
    font-size: var(--font-size-lg);
    color: hsl(var(--text-secondary));
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: hsl(var(--background-alt));
    border-left: 4px solid hsl(var(--primary-color));
    border-radius: var(--border-radius);
}

.article-content h2 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin: 2.5rem 0 1.5rem;
    color: hsl(var(--text-primary));
    text-align: left;
}

.article-content h2 i {
    color: hsl(var(--primary-color));
    margin-right: 0.75rem;
}

.article-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: hsl(var(--text-primary));
}

.article-content h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: hsl(var(--text-primary));
}

.article-content p {
    margin-bottom: 1.5rem;
    color: hsl(var(--text-secondary));
}

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

.article-content ul {
    list-style: none;
}

.article-content ul li {
    position: relative;
    margin-bottom: 0.75rem;
    color: hsl(var(--text-secondary));
    padding-left: 1.5rem;
}

.article-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: hsl(var(--primary-color));
    font-weight: 600;
}

.article-content ol {
    list-style: decimal;
}

.article-content ol li {
    margin-bottom: 0.75rem;
    color: hsl(var(--text-secondary));
}

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

.checklist {
    background-color: hsl(var(--background-alt));
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
}

.checklist li::before {
    content: "☐";
    color: hsl(var(--primary-color));
}

.article-conclusion {
    background-color: hsl(var(--background-alt));
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin: 3rem 0;
    border: 1px solid hsl(var(--border-color));
}

.article-conclusion h2 {
    margin-top: 0;
}

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

.article-cta h3 {
    color: hsl(var(--text-light));
    margin-bottom: 1rem;
}

.article-cta h3 i {
    margin-right: 0.75rem;
}

.article-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid hsl(var(--border-color));
}

.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.article-share span {
    color: hsl(var(--text-secondary));
    font-size: var(--font-size-sm);
}

.article-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: hsl(var(--primary-color));
    color: hsl(var(--text-light));
    border-radius: 50%;
    transition: var(--transition);
}

.article-share a:hover {
    background-color: hsl(var(--primary-dark));
    transform: translateY(-2px);
}

/* Legal Pages */
.legal-section {
    padding: 6rem 0 3rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: var(--line-height-relaxed);
}

.legal-content h1 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(var(--text-primary));
}

.legal-content h1 i {
    color: hsl(var(--primary-color));
    margin-right: 0.75rem;
}

.last-updated {
    color: hsl(var(--text-secondary));
    font-size: var(--font-size-sm);
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin: 2.5rem 0 1.5rem;
    color: hsl(var(--text-primary));
    text-align: left;
}

.legal-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: hsl(var(--text-primary));
}

.legal-content p {
    margin-bottom: 1.5rem;
    color: hsl(var(--text-secondary));
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    list-style: none;
}

.legal-content ul li {
    position: relative;
    margin-bottom: 0.75rem;
    color: hsl(var(--text-secondary));
    padding-left: 1.5rem;
}

.legal-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: hsl(var(--primary-color));
    font-weight: 600;
}

.cookie-settings-box {
    background-color: hsl(var(--background-alt));
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border: 1px solid hsl(var(--border-color));
    text-align: center;
}

/* Thanks Page */
.thanks-section {
    padding: 8rem 0 5rem;
    text-align: center;
}

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

.thanks-icon {
    font-size: 4rem;
    color: hsl(var(--success-color));
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: hsl(var(--text-primary));
}

.thanks-message {
    font-size: var(--font-size-lg);
    color: hsl(var(--text-secondary));
    margin-bottom: 1rem;
}

.thanks-content p {
    color: hsl(var(--text-secondary));
    margin-bottom: 2rem;
}

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

.contact-reminder {
    background-color: hsl(var(--background-alt));
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid hsl(var(--border-color));
}

.contact-reminder h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 1rem;
    color: hsl(var(--text-primary));
}

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

.contact-reminder a {
    color: hsl(var(--primary-color));
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .navbar {
        padding: 0.75rem var(--container-padding);
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: hsl(var(--background-alt));
        flex-direction: column;
        padding: 2rem var(--container-padding);
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        transition: var(--transition);
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: var(--font-size-3xl);
    }

    .hero-content p {
        font-size: var(--font-size-base);
    }

    section {
        padding: 3rem 0;
    }

    section h2 {
        font-size: var(--font-size-2xl);
        margin-bottom: 2rem;
    }

    .services-grid,
    .reviews-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

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

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

    .cookie-modal-buttons {
        flex-direction: column;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .article-header h1,
    .legal-content h1,
    .thanks-content h1 {
        font-size: var(--font-size-3xl);
    }

    .article-content h2,
    .legal-content h2 {
        font-size: var(--font-size-xl);
    }

    .article-navigation {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

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

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

@media (max-width: 480px) {
    :root {
        --container-padding: 0.75rem;
    }

    .hero-content h1 {
        font-size: var(--font-size-2xl);
    }

    .article-header h1,
    .legal-content h1,
    .thanks-content h1 {
        font-size: var(--font-size-2xl);
    }

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }

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

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .article-navigation,
    .article-cta,
    .social-links {
        display: none !important;
    }

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

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

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

    p, ul, ol {
        orphans: 3;
        widows: 3;
    }

    img {
        max-width: 100% !important;
    }
}

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

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid hsl(var(--primary-color));
    outline-offset: 2px;
}

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

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