/* CSS Custom Properties */
:root {
    /* Colors using HSL format */
    --primary: 214 100% 59%; /* #2563eb */
    --primary-dark: 229 84% 53%; /* #1d4ed8 */
    --secondary: 158 64% 52%; /* #10b981 */
    --secondary-dark: 160 84% 39%; /* #059669 */
    --background: 210 11% 98%; /* #F5F7FA */
    --surface: 0 0% 100%; /* #FFFFFF */
    --text-primary: 210 24% 16%; /* #1e293b */
    --text-secondary: 215 25% 27%; /* #334155 */
    --text-muted: 215 16% 47%; /* #64748b */
    --border-light: 214 32% 91%; /* #e2e8f0 */
    --border: 217 19% 83%; /* #cbd5e1 */
    --shadow: 210 24% 16%; /* #1e293b with opacity */
    --success: 142 71% 45%; /* #059669 */
    --warning: 43 96% 56%; /* #f59e0b */
    --error: 0 84% 60%; /* #ef4444 */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: hsl(var(--text-primary));
    background-color: hsl(var(--background));
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    color: hsl(var(--text-primary));
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    color: #0476c2;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
}

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

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

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

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

.nav-brand svg {
    width: 40px;
    height: 40px;
}

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

.nav-menu a {
    color: hsl(var(--text-secondary));
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: hsl(var(--primary));
    background-color: hsl(var(--primary) / 0.1);
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.05) 0%, hsl(var(--secondary) / 0.05) 100%);
}

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

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    text-align: left;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: hsl(var(--text-secondary));
}

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

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-icon {
    width: 48px;
    height: 48px;
    color: hsl(var(--primary));
    margin: 0 auto 1rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: hsl(var(--text-muted));
    max-width: 600px;
    margin: 0 auto;
}

/* About Preview Section */
.about-preview {
    background-color: hsl(var(--surface));
}

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

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

.feature-list {
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.feature-list svg {
    width: 20px;
    height: 20px;
    color: hsl(var(--secondary));
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.05) 0%, hsl(var(--secondary) / 0.05) 100%);
    border-radius: 12px;
    border: 1px solid hsl(var(--border-light));
}

.stat-item svg {
    width: 32px;
    height: 32px;
    color: hsl(var(--primary));
    margin-bottom: 1rem;
}

.stat-item h4 {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--primary));
    margin-bottom: 0.5rem;
}

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

/* Services Preview Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: hsl(var(--surface));
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px hsla(var(--shadow), 0.08);
    border: 1px solid hsl(var(--border-light));
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px hsla(var(--shadow), 0.12);
}

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

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

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

.service-link {
    color: hsl(var(--primary));
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: hsl(var(--primary-dark));
}

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

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

.testimonial-card {
    background: linear-gradient(135deg, hsl(var(--primary) / 0.02) 0%, hsl(var(--secondary) / 0.02) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid hsl(var(--border-light));
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 1.5rem;
}

.testimonial-rating svg {
    width: 20px;
    height: 20px;
    color: #fbbf24;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: hsl(var(--text-secondary));
    line-height: 1.7;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
}

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

.testimonial-card cite span {
    color: hsl(var(--text-muted));
    font-size: 0.9rem;
}

/* Blog Preview Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background-color: hsl(var(--surface));
    border-radius: 12px;
    box-shadow: 0 4px 20px hsla(var(--shadow), 0.08);
    border: 1px solid hsl(var(--border-light));
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px hsla(var(--shadow), 0.12);
}

.blog-icon {
    padding: 2rem 2rem 1rem;
}

.blog-icon svg {
    width: 48px;
    height: 48px;
    color: hsl(var(--primary));
}

.blog-content {
    padding: 0 2rem 2rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
}

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

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

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

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: hsl(var(--text-muted));
}

.blog-category {
    background-color: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
}

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

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--secondary)) 100%);
    color: white;
}

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

.newsletter-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
}

.newsletter h2 {
    color: white;
    margin-bottom: 1rem;
}

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

.newsletter-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.95);
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-disclaimer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

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

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

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: hsl(var(--primary));
    margin-top: 4px;
    flex-shrink: 0;
}

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

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

.contact-form-preview {
    text-align: center;
}

/* Contact Form Styles */
.contact-form-section {
    padding: 80px 0;
    background-color: hsl(var(--background));
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: hsl(var(--text-primary));
    font-size: 0.95rem;
    text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid hsl(var(--border));
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background-color: hsl(var(--surface));
    color: hsl(var(--text-primary));
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    height: 48px;
    margin: 0;
}

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

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-section {
    background-color: hsl(var(--surface));
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid hsl(var(--border-light));
}

.contact-info-card h3 {
    margin-bottom: 2rem;
    color: hsl(var(--text-primary));
}

.hours-card {
    background-color: hsl(var(--surface));
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid hsl(var(--border-light));
    margin-top: 2rem;
}

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

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid hsl(var(--border-light));
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    font-weight: 500;
    color: hsl(var(--text-primary));
}

.hours-item .time {
    color: hsl(var(--text-secondary));
}

.emergency-contact {
    background: linear-gradient(135deg, hsl(var(--primary) / 0.05) 0%, hsl(var(--secondary) / 0.05) 100%);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid hsl(var(--border-light));
    margin-top: 2rem;
}

.emergency-contact h4 {
    margin-bottom: 0.75rem;
    color: hsl(var(--primary));
}

.emergency-contact p {
    margin: 0;
    font-size: 0.9rem;
    color: hsl(var(--text-secondary));
}

/* Footer */
.footer {
    background-color: hsl(var(--text-primary));
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand svg {
    width: 32px;
    height: 32px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

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

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.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: 8px;
    transition: all 0.3s ease;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: hsl(var(--surface));
    border-top: 1px solid hsl(var(--border));
    box-shadow: 0 -4px 20px hsla(var(--shadow), 0.1);
    z-index: 1001;
    padding: 1.5rem 0;
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.3s ease-out;
}

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

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

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

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

.cookie-buttons button:first-child {
    background-color: hsl(var(--primary));
    color: white;
}

.cookie-buttons button:first-child:hover {
    background-color: hsl(var(--primary-dark));
}

.cookie-buttons button:not(:first-child) {
    background-color: transparent;
    color: hsl(var(--text-secondary));
    border: 1px solid hsl(var(--border));
}

.cookie-buttons button:not(:first-child):hover {
    background-color: hsl(var(--border-light));
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

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

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

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

.cookie-option:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

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

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cookie-modal-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-modal-buttons button:first-child {
    background-color: hsl(var(--primary));
    color: white;
}

.cookie-modal-buttons button:first-child:hover {
    background-color: hsl(var(--primary-dark));
}

.cookie-modal-buttons button:last-child {
    background-color: transparent;
    color: hsl(var(--text-secondary));
    border: 1px solid hsl(var(--border));
}

.cookie-modal-buttons button:last-child:hover {
    background-color: hsl(var(--border-light));
}

/* Article Pages */
.article-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.05) 0%, hsl(var(--secondary) / 0.05) 100%);
}

.article-breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

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

.article-breadcrumb span {
    color: hsl(var(--text-muted));
    margin: 0 0.5rem;
}

.article-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.article-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

.article-category svg {
    width: 16px;
    height: 16px;
}

.article-info {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: hsl(var(--text-muted));
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: hsl(var(--text-primary));
}

.article-excerpt {
    font-size: 1.2rem;
    color: hsl(var(--text-secondary));
    line-height: 1.6;
    margin: 0;
}

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

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

.article-body h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: hsl(var(--primary));
    font-size: 2rem;
}

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

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

.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));
    line-height: 1.6;
}

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

.article-image {
    margin: 2rem 0;
    text-align: center;
}

.article-image svg {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px hsla(var(--shadow), 0.1);
}

.article-conclusion {
    background: linear-gradient(135deg, hsl(var(--primary) / 0.05) 0%, hsl(var(--secondary) / 0.05) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid hsl(var(--border-light));
    margin-top: 3rem;
    text-align: center;
}

.article-conclusion p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.article-sidebar {
    max-width: 300px;
    margin: 0 auto;
    margin-top: 3rem;
}

.related-articles,
.article-cta {
    background-color: hsl(var(--surface));
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid hsl(var(--border-light));
    margin-bottom: 2rem;
}

.related-articles h3,
.article-cta h3 {
    margin-bottom: 1.5rem;
    color: hsl(var(--text-primary));
}

.related-article {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid hsl(var(--border-light));
}

.related-article:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-article h4 {
    margin-bottom: 0.5rem;
}

.related-article h4 a {
    color: hsl(var(--text-primary));
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.4;
}

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

.related-date {
    font-size: 0.85rem;
    color: hsl(var(--text-muted));
}

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

/* Newsletter Blog Section */
.newsletter-blog {
    background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--secondary)) 100%);
    color: white;
    padding: 60px 0;
    margin-top: 60px;
}

.newsletter-blog .newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-blog .newsletter-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

.newsletter-blog h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-blog p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.newsletter-blog .form-group {
    display: flex;
    gap: 1rem;
}

.newsletter-blog input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.95);
}

.newsletter-blog .newsletter-disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

/* Animations */
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: hsl(var(--surface));
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px hsla(var(--shadow), 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    /* Grids */
    .about-grid,
    .contact-grid,
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .about-stats {
        flex-direction: row;
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

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

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

    /* Newsletter Form */
    .form-group {
        flex-direction: column;
    }
}

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

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

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

    .about-stats {
        flex-direction: column;
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: hsl(var(--text-primary));
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid hsl(var(--border));
    border-radius: 8px;
    font-size: 1rem;
    background-color: hsl(var(--surface));
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

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

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

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

    body {
        background: white;
        color: black;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}
