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

:root {
    /* Primary Colors */
    --primary: 210 100% 50%; /* #0080FF */
    --primary-dark: 210 100% 40%; /* #0066CC */
    --primary-light: 210 100% 90%; /* #E6F3FF */
    
    /* Secondary Colors */
    --secondary: 330 60% 50%; /* #CC3366 */
    --secondary-dark: 330 60% 40%; /* #A6295C */
    --secondary-light: 330 60% 95%; /* #FAE6F0 */
    
    /* Neutral Colors */
    --background: 210 11% 98%; /* #F5F7FA */
    --surface: 0 0% 100%; /* #FFFFFF */
    --surface-alt: 210 11% 96%; /* #F0F2F5 */
    --text: 210 11% 15%; /* #22262A */
    --text-light: 210 8% 45%; /* #6B7280 */
    --text-muted: 210 6% 65%; /* #9CA3AF */
    --border: 210 11% 85%; /* #D1D5DB */
    --border-light: 210 11% 92%; /* #E5E7EB */
    
    /* Status Colors */
    --success: 142 76% 36%; /* #10B981 */
    --warning: 43 96% 56%; /* #F59E0B */
    --error: 0 84% 60%; /* #EF4444 */
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-family-heading: 'Georgia', 'Times New Roman', serif;
    
    /* Transitions */
    --transition: all 0.2s ease-in-out;
    --transition-slow: all 0.3s ease-in-out;
}

body {
    font-family: var(--font-family);
    background-color: hsl(var(--background));
    color: hsl(var(--text));
    line-height: 1.6;
    font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: hsl(var(--text));
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--space-sm);
    color: hsl(var(--text-light));
}

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

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

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

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

.btn-secondary:hover {
    background-color: hsl(var(--secondary-dark));
    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;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    height: 2.5rem;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-link {
    color: hsl(var(--text));
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

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

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

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

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: hsl(var(--text));
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    color: hsl(var(--text-light));
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, hsl(var(--primary-light)), hsl(var(--surface-alt)));
    padding: var(--space-2xl) 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.page-header p {
    font-size: 1.125rem;
    color: hsl(var(--text-light));
}

/* Section Styling */
section {
    padding: var(--space-2xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-xl);
    font-size: 2.25rem;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.section-icon {
    width: 3rem;
    height: 3rem;
}

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

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

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

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

.service-icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: var(--space-md);
}

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

/* Team Section */
.team-section {
    background-color: hsl(var(--surface));
}

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

.team-description {
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
}

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

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

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

.stat-label {
    font-size: 1rem;
    color: hsl(var(--text-light));
}

/* Goals Section */
.goals-section {
    background-color: hsl(var(--surface-alt));
}

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

.goal-item {
    background-color: hsl(var(--surface));
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

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

/* Success Section */
.success-section {
    background-color: hsl(var(--surface));
}

.success-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.success-item {
    text-align: center;
    padding: var(--space-lg);
}

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

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

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

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

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

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

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

.newsletter-form button {
    background-color: white;
    color: hsl(var(--primary));
}

.newsletter-form button:hover {
    background-color: hsl(var(--surface-alt));
}

/* Forms */
.form-group {
    margin-bottom: var(--space-md);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid hsl(var(--border));
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid hsl(var(--border));
    border-radius: var(--radius-sm);
    position: relative;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Contact Section */
.contact-content {
    padding: var(--space-2xl) 0;
}

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

.contact-form-section h2,
.contact-info-section h2 {
    margin-bottom: var(--space-md);
}

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

.contact-icon {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.125rem;
}

.contact-details small {
    color: hsl(var(--text-muted));
}

/* Social Links */
.social-links {
    display: flex;
    gap: var(--space-sm);
}

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

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

.social-links img {
    width: 1.25rem;
    height: 1.25rem;
}

.social-links-large {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.social-links-large a {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background-color: hsl(var(--surface-alt));
    border-radius: var(--radius);
    transition: var(--transition);
    text-decoration: none;
    color: hsl(var(--text));
}

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

/* Footer */
.footer {
    background-color: hsl(var(--text));
    color: white;
    padding: var(--space-2xl) 0 var(--space-lg);
}

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

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

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: rgba(255, 255, 255, 0.8);
}

.contact-info img {
    width: 1rem;
    height: 1rem;
    filter: brightness(0) invert(1);
}

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

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

/* 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: var(--shadow-lg);
    z-index: 2000;
    padding: var(--space-md);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: var(--space-md);
}

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

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

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

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

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

.cookie-category p {
    margin: var(--space-xs) 0 0 1.5rem;
    font-size: 0.9rem;
    color: hsl(var(--text-light));
}

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

/* Legal Content */
.legal-content {
    padding: var(--space-2xl) 0;
}

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

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

.legal-document .section {
    margin-bottom: var(--space-xl);
}

.legal-document .section h2 {
    color: hsl(var(--primary));
    border-bottom: 2px solid hsl(var(--primary-light));
    padding-bottom: var(--space-xs);
    margin-bottom: var(--space-md);
}

.legal-document .section h3 {
    color: hsl(var(--text));
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-document ul,
.legal-document ol {
    margin-left: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-document li {
    margin-bottom: var(--space-xs);
}

.contact-details {
    background-color: hsl(var(--surface-alt));
    padding: var(--space-md);
    border-radius: var(--radius);
    margin: var(--space-md) 0;
}

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

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

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

.cookie-table th {
    background-color: hsl(var(--surface-alt));
    font-weight: 600;
    color: hsl(var(--text));
}

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

/* Thanks Page */
.thanks-content {
    padding: var(--space-2xl) 0;
}

.thanks-card {
    background-color: hsl(var(--surface));
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: var(--space-md);
}

.thanks-message {
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
}

.thanks-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.next-steps,
.reference-info {
    margin: var(--space-lg) 0;
    text-align: left;
}

.steps-list {
    list-style: none;
    margin-left: 0;
}

.steps-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: var(--space-sm);
}

.steps-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(var(--success));
    font-weight: bold;
}

/* About Page Specific */
.about-content {
    padding: var(--space-2xl) 0;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
    text-align: center;
}

.values-section {
    margin: var(--space-2xl) 0;
}

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

.value-item {
    text-align: center;
    padding: var(--space-lg);
}

.value-item img {
    width: 3rem;
    height: 3rem;
    margin-bottom: var(--space-md);
}

.team-details {
    margin: var(--space-2xl) 0;
}

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

.team-member {
    background-color: hsl(var(--surface));
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.team-member .role {
    color: hsl(var(--primary));
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.mission-section {
    margin: var(--space-2xl) 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-list {
    list-style: none;
    margin-left: 0;
}

.benefits-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: var(--space-sm);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(var(--success));
    font-weight: bold;
}

/* Services Page Specific */
.services-content {
    padding: var(--space-2xl) 0;
}

.services-detailed {
    margin-bottom: var(--space-2xl);
}

.service-detailed {
    background-color: hsl(var(--surface));
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow);
}

.service-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.service-icon-large {
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
}

.service-title-section h2 {
    margin-bottom: var(--space-xs);
}

.service-subtitle {
    color: hsl(var(--text-light));
    font-style: italic;
}

.service-features {
    list-style: none;
    margin-left: 0;
    margin-top: var(--space-md);
}

.service-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: var(--space-sm);
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: hsl(var(--primary));
    font-weight: bold;
    font-size: 1.2rem;
}

.additional-services {
    margin: var(--space-2xl) 0;
}

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

.additional-service {
    background-color: hsl(var(--surface-alt));
    padding: var(--space-lg);
    border-radius: var(--radius);
}

.additional-service h3 {
    color: hsl(var(--primary));
    margin-bottom: var(--space-sm);
}

.process-section {
    margin: var(--space-2xl) 0;
}

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

.process-step {
    text-align: center;
    padding: var(--space-lg);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: hsl(var(--primary));
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: var(--space-md);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
    color: white;
    text-align: center;
    padding: var(--space-2xl) 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: var(--space-sm);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-section .btn:hover {
    background-color: hsl(var(--surface-alt));
}

/* FAQ Section */
.faq-section {
    background-color: hsl(var(--surface-alt));
    padding: var(--space-2xl) 0;
}

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

.faq-item {
    background-color: hsl(var(--surface));
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: hsl(var(--primary));
    margin-bottom: var(--space-sm);
    font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: hsl(var(--surface));
        flex-direction: column;
        box-shadow: var(--shadow-lg);
        padding: var(--space-md);
        gap: var(--space-sm);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .service-header {
        flex-direction: column;
        text-align: center;
    }

    .container {
        padding: 0 var(--space-md);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn-large {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .cookie-modal-content {
        padding: var(--space-md);
    }

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

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

    .social-links-large a {
        flex: 1;
        justify-content: center;
        min-width: 0;
    }
}

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

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

    h1 { font-size: 18pt; }
    h2 { font-size: 16pt; }
    h3 { font-size: 14pt; }

    .container {
        max-width: none;
        padding: 0;
    }

    .legal-document {
        max-width: none;
    }
}

/* 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 */
:focus-visible {
    outline: 2px solid hsl(var(--primary));
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --border: 0 0% 0%;
        --text-light: 0 0% 20%;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --background: 210 11% 8%;
        --surface: 210 11% 12%;
        --surface-alt: 210 11% 16%;
        --text: 210 11% 85%;
        --text-light: 210 8% 65%;
        --text-muted: 210 6% 45%;
        --border: 210 11% 25%;
        --border-light: 210 11% 20%;
    }
}
