/* CSS Custom Properties */
:root {
    /* Colors - Automotive Professional Theme */
    --primary: 210 100% 35%;     /* #0066CC - Professional Blue */
    --primary-dark: 210 100% 25%; /* #004C99 */
    --primary-light: 210 100% 90%; /* #E6F3FF */
    --secondary: 45 100% 50%;     /* #FFCC00 - Automotive Yellow */
    --secondary-dark: 45 100% 40%; /* #CC9900 */
    --accent: 0 75% 50%;          /* #D32F2F - Alert Red */
    
    /* Neutrals */
    --background: 210 11% 98%;    /* #F5F7FA */
    --surface: 0 0% 100%;         /* #FFFFFF */
    --surface-alt: 210 14% 95%;   /* #F1F3F6 */
    --border: 210 14% 89%;        /* #E1E5E9 */
    --text: 210 11% 15%;          /* #1F2937 */
    --text-light: 210 10% 40%;    /* #6B7280 */
    --text-muted: 210 9% 60%;     /* #9CA3AF */
    
    /* Typography */
    --font-primary: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 hsl(0 0% 0% / 0.05);
    --shadow-md: 0 4px 6px -1px hsl(0 0% 0% / 0.1), 0 2px 4px -1px hsl(0 0% 0% / 0.06);
    --shadow-lg: 0 10px 15px -3px hsl(0 0% 0% / 0.1), 0 4px 6px -2px hsl(0 0% 0% / 0.05);
    --shadow-xl: 0 20px 25px -5px hsl(0 0% 0% / 0.1), 0 10px 10px -5px hsl(0 0% 0% / 0.04);
    
    /* Container */
    --container-max: 1200px;
    --container-padding: var(--space-lg);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-normal);
    color: hsl(var(--text));
    background-color: hsl(var(--background));
    line-height: 1.6;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    color: hsl(var(--text));
}

h1 {
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
}

h2 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

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

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-lg);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 1rem;
    min-height: 44px;
}

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

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

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

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

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

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

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

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

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: var(--font-weight-bold);
    font-size: 1.5rem;
    color: hsl(var(--text));
}

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

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

.nav-link {
    color: hsl(var(--text-light));
    font-weight: var(--font-weight-medium);
    position: relative;
    padding: var(--space-sm) 0;
}

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

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

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

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

/* Hero Section */
.hero {
    position: relative;
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, hsl(var(--primary-light)), hsl(var(--surface)));
    overflow: hidden;
}

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

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--space-lg);
    color: hsl(var(--text));
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--space-2xl);
    color: hsl(var(--text-light));
}

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-dark)));
    color: white;
    padding: var(--space-2xl) 0;
    text-align: center;
}

.page-hero h1 {
    color: white;
    margin-bottom: var(--space-sm);
}

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

/* Sections */
section {
    padding: var(--space-3xl) 0;
}

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

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

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

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

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

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

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background-color: hsl(var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 40px;
    height: 40px;
}

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

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

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

.team-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-lg);
    background-color: hsl(var(--surface-alt));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-icon img {
    width: 50px;
    height: 50px;
}

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

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

.goals-list {
    list-style: none;
}

.goals-list li {
    padding: var(--space-md) 0;
    border-bottom: 1px solid hsl(var(--border));
    position: relative;
    padding-left: var(--space-xl);
}

.goals-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(var(--primary));
    font-weight: var(--font-weight-bold);
    font-size: 1.25rem;
}

.goals-icon {
    text-align: center;
}

.goals-icon img {
    width: 200px;
    height: 200px;
}

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

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

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

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    background-color: hsl(var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon img {
    width: 30px;
    height: 30px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: hsl(var(--primary));
    margin-bottom: var(--space-sm);
}

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

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

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

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

.newsletter-content p {
    color: hsl(var(--primary-light));
    margin-bottom: var(--space-xl);
}

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

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

/* About Content */
.about-content {
    padding: var(--space-3xl) 0;
}

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

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 300px;
}

/* Mission Section */
.mission {
    background-color: hsl(var(--surface-alt));
}

.mission-content {
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background-color: hsl(var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon img {
    width: 40px;
    height: 40px;
}

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

.team-members {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.member-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-xl);
    background-color: hsl(var(--surface));
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    align-items: center;
}

.member-image {
    width: 120px;
    height: 120px;
    background-color: hsl(var(--surface-alt));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-image img {
    width: 60px;
    height: 60px;
}

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

/* Services Detail */
.services-detail {
    padding: var(--space-3xl) 0;
}

.service-category {
    margin-bottom: var(--space-3xl);
}

.service-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-xl);
    align-items: center;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-lg);
    border-bottom: 2px solid hsl(var(--primary));
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background-color: hsl(var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-large img {
    width: 50px;
    height: 50px;
}

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

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

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

.service-item ul {
    list-style: none;
    margin-top: var(--space-md);
}

.service-item li {
    padding: var(--space-xs) 0;
    position: relative;
    padding-left: var(--space-lg);
}

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

/* Service CTA */
.service-cta {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-dark)));
    color: white;
    text-align: center;
}

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

.cta-content p {
    color: hsl(var(--primary-light));
    margin-bottom: var(--space-xl);
}

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

.cta-buttons .btn-outline {
    border-color: white;
    color: white;
}

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

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

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

.contact-info {
    background-color: hsl(var(--surface));
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-item {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    align-items: flex-start;
}

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

.contact-item h3 {
    margin-bottom: var(--space-xs);
    color: hsl(var(--text));
}

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

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

/* Social Links Contact */
.social-links-contact {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid hsl(var(--border));
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background-color: hsl(var(--surface-alt));
    border-radius: var(--radius-md);
    color: hsl(var(--text));
    transition: all 0.2s ease;
}

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

/* Contact Form */
.contact-form-container {
    background-color: hsl(var(--surface));
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-sm) var(--space-md);
    border: 2px solid hsl(var(--border));
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-sm);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    transform: scale(1.2);
}

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

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

.map-placeholder {
    background-color: hsl(var(--surface));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-3xl);
    text-align: center;
    border: 2px dashed hsl(var(--border));
}

.map-icon {
    color: hsl(var(--primary));
    margin-bottom: var(--space-lg);
}

.map-info h3 {
    color: hsl(var(--text));
    margin-bottom: var(--space-md);
}

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

/* Thanks Section */
.thanks-section {
    padding: var(--space-3xl) 0;
    background-color: hsl(var(--surface));
}

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

.thanks-icon {
    color: hsl(var(--primary));
    margin-bottom: var(--space-xl);
}

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

.thanks-benefits {
    background-color: hsl(var(--surface-alt));
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
    text-align: left;
}

.thanks-benefits h3 {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.thanks-benefits ul {
    list-style: none;
}

.thanks-benefits li {
    padding: var(--space-sm) 0;
    position: relative;
    padding-left: var(--space-xl);
}

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

.thanks-actions {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.thanks-contact {
    background-color: hsl(var(--primary-light));
    padding: var(--space-lg);
    border-radius: var(--radius-md);
}

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

/* Thanks Info Steps */
.thanks-info {
    background-color: hsl(var(--surface-alt));
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
    text-align: left;
}

.thanks-info h3 {
    text-align: center;
    margin-bottom: var(--space-lg);
}

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

.step {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: hsl(var(--primary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: var(--space-xs);
    color: hsl(var(--text));
}

.step-content p {
    margin: 0;
    color: hsl(var(--text-light));
}

/* Emergency Contact */
.emergency-contact {
    background: linear-gradient(135deg, hsl(var(--accent) / 0.1), hsl(var(--accent) / 0.05));
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
    border: 1px solid hsl(var(--accent) / 0.2);
}

.emergency-contact h3 {
    color: hsl(var(--accent));
    margin-bottom: var(--space-md);
}

.emergency-phone {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: hsl(var(--accent));
    margin: var(--space-md) 0;
}

.emergency-hours {
    font-size: 0.875rem;
    color: hsl(var(--text-muted));
    margin: 0;
}

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

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background-color: hsl(var(--surface));
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.legal-document h2 {
    color: hsl(var(--primary));
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid hsl(var(--border));
}

.legal-document h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-document h3 {
    color: hsl(var(--text));
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.legal-document ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
}

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

.legal-contact {
    background-color: hsl(var(--surface-alt));
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    margin-top: var(--space-2xl);
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
    background-color: hsl(var(--surface));
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

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

.cookie-table td {
    color: hsl(var(--text-light));
}

.cookie-controls {
    background-color: hsl(var(--primary-light));
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    margin: var(--space-xl) 0;
    text-align: center;
}

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

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

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

.footer-section p {
    color: hsl(var(--text-muted));
    margin-bottom: var(--space-md);
}

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

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

.footer-section a {
    color: hsl(var(--text-muted));
    transition: color 0.2s ease;
}

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

.social-links {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-md);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid hsl(var(--text-light));
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    color: hsl(var(--text-muted));
    font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: hsl(var(--surface));
    border-top: 3px solid hsl(var(--primary));
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    padding: var(--space-lg);
    display: none;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

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

.cookie-content p {
    margin: 0;
    color: hsl(var(--text-light));
    flex: 1;
    min-width: 300px;
}

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

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: hsl(0 0% 0% / 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    padding: var(--space-lg);
}

.cookie-modal.hidden {
    display: none;
}

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

.cookie-modal-content h3 {
    margin-bottom: var(--space-xl);
    color: hsl(var(--text));
}

.cookie-category {
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background-color: hsl(var(--surface-alt));
    border-radius: var(--radius-md);
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: var(--font-weight-medium);
    color: hsl(var(--text));
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    transform: scale(1.2);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --container-padding: var(--space-md);
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: hsl(var(--surface));
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-md);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .goals-content {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .service-header {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .member-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .info-steps {
        gap: var(--space-xl);
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .team-grid,
    .success-stats,
    .values-grid,
    .service-items {
        grid-template-columns: 1fr;
    }
    
    .cookie-modal-buttons {
        flex-direction: column;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .hero-buttons,
    .cta-buttons,
    .thanks-actions,
    .newsletter,
    .service-cta {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .page-hero {
        background: none;
        color: black;
    }
}

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

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

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary: 210 100% 30%;
        --text: 0 0% 0%;
        --background: 0 0% 100%;
        --border: 0 0% 60%;
    }
}
