<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS Custom Properties for Consistent Design */
:root {
    /* Colors - Professional Automotive Palette */
    --primary: 210 100% 40%; /* #0066CC - Professional Blue */
    --primary-dark: 210 100% 30%; /* #004D99 */
    --primary-light: 210 100% 95%; /* #E6F3FF */
    --secondary: 45 100% 50%; /* #FFCC00 - Accent Gold */
    --secondary-dark: 45 100% 40%; /* #CC9900 */
    --accent: 0 75% 50%; /* #E04444 - Alert Red */
    
    /* Neutrals */
    --background: 210 11% 98%; /* #F5F7FA */
    --surface: 0 0% 100%; /* #FFFFFF */
    --surface-light: 210 11% 96%; /* #F0F2F5 */
    --border: 210 11% 90%; /* #E1E4E8 */
    --border-light: 210 11% 95%; /* #F0F2F5 */
    
    /* Text Colors */
    --text: 210 11% 15%; /* #212529 */
    --text-secondary: 210 11% 40%; /* #6C757D */
    --text-muted: 210 11% 60%; /* #ADB5BD */
    --text-light: 0 0% 100%; /* #FFFFFF */
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Georgia', 'Times New Roman', serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* 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);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    
    /* Container */
    --container-max-width: 1200px;
    --container-padding: var(--space-6);
}

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

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

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: hsl(var(--text));
    background-color: hsl(var(--background));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1 {
    font-size: var(--text-4xl);
}

h2 {
    font-size: var(--text-3xl);
}

h3 {
    font-size: var(--text-2xl);
}

h4 {
    font-size: var(--text-xl);
}

h5 {
    font-size: var(--text-lg);
}

h6 {
    font-size: var(--text-base);
}

p {
    margin-bottom: var(--space-4);
    color: hsl(var(--text-secondary));
}

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

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

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

ul, ol {
    margin-bottom: var(--space-4);
    padding-left: var(--space-6);
}

li {
    margin-bottom: var(--space-2);
}

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

/* Utility Classes */
.hidden {
    display: none !important;
}

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

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Background Utilities */
.bg-light {
    background-color: hsl(var(--surface-light));
}

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

.bg-primary h1,
.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary h5,
.bg-primary h6 {
    color: hsl(var(--text-light));
}

.bg-primary p {
    color: hsl(var(--primary-light));
}

/* Section Spacing */
.section {
    padding: var(--space-20) 0;
}

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

.section-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: hsl(var(--text-secondary));
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--space-3) var(--space-6);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    background: none;
    min-width: 120px;
}

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

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

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

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

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

.btn-outline:hover {
    background-color: hsl(var(--primary));
    color: hsl(var(--text-light));
    text-decoration: none;
    transform: translateY(-2px);
}

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

.btn-white:hover {
    background-color: hsl(var(--surface-light));
    color: hsl(var(--primary-dark));
    text-decoration: none;
    transform: translateY(-2px);
}

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

.btn-outline-white:hover {
    background-color: hsl(var(--text-light));
    color: hsl(var(--primary));
    text-decoration: none;
    transform: translateY(-2px);
}

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

.navbar {
    padding: var(--space-4) 0;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--space-8);
}

.nav-link {
    font-weight: 500;
    color: hsl(var(--text));
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: hsl(var(--primary));
    background-color: hsl(var(--primary-light));
    text-decoration: none;
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

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

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

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-dark)) 100%);
    color: hsl(var(--text-light));
    margin-top: 72px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    pointer-events: none;
}

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

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: none;
}

.hero-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    margin-bottom: var(--space-6);
    line-height: 1.2;
    color: hsl(var(--text-light));
}

.hero-subtitle {
    font-size: var(--text-xl);
    margin-bottom: var(--space-8);
    color: hsl(var(--primary-light));
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-car {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-dark)) 100%);
    color: hsl(var(--text-light));
    text-align: center;
    padding: var(--space-20) 0 var(--space-16) 0;
    margin-top: 72px;
}

.page-header h1 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
    color: hsl(var(--text-light));
}

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

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

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

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

.service-icon {
    margin-bottom: var(--space-6);
}

.service-icon img {
    width: 64px;
    height: 64px;
    margin: 0 auto;
}

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

.service-card p {
    margin-bottom: var(--space-6);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-top: var(--space-4);
}

/* Services Detailed */
.services-detailed {
    padding: var(--space-20) 0;
}

.service-detailed {
    margin-bottom: var(--space-20);
}

.service-detailed:last-child {
    margin-bottom: 0;
}

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

.service-detailed.reverse .service-content {
    direction: rtl;
}

.service-detailed.reverse .service-text {
    direction: ltr;
}

.service-text h2 {
    margin-bottom: var(--space-6);
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-8);
}

.service-features li {
    position: relative;
    padding-left: var(--space-6);
    margin-bottom: var(--space-3);
}

.service-features li::before {
    content: "âœ“";
    position: absolute;
    left: 0;
    color: hsl(var(--secondary));
    font-weight: bold;
}

.service-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Service Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.category-card {
    background-color: hsl(var(--surface));
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.category-icon {
    margin-bottom: var(--space-6);
}

.category-icon img {
    width: 48px;
    height: 48px;
}

.category-card ul {
    list-style: none;
    padding: 0;
}

.category-card li {
    padding: var(--space-2) 0;
    border-bottom: 1px solid hsl(var(--border-light));
    margin-bottom: 0;
}

.category-card li:last-child {
    border-bottom: none;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: hsl(var(--primary));
    color: hsl(var(--text-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    font-weight: bold;
    margin: 0 auto var(--space-4);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    margin-bottom: var(--space-16);
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin: var(--space-8) 0;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: var(--text-3xl);
    color: hsl(var(--primary));
    margin-bottom: var(--space-2);
}

.stat p {
    font-weight: 600;
    margin-bottom: 0;
}

/* About Detailed */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    margin-bottom: var(--space-16);
}

/* Mission &amp; Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

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

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

.value-icon {
    margin-bottom: var(--space-6);
}

.value-icon img {
    width: 64px;
    height: 64px;
    margin: 0 auto;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
}

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

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.team-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: var(--space-4);
}

.team-member h3 {
    margin-bottom: var(--space-2);
}

.team-member p:first-of-type {
    color: hsl(var(--primary));
    font-weight: 600;
    margin-bottom: var(--space-3);
}

/* Team Detailed */
.team-detailed-grid {
    display: grid;
    gap: var(--space-12);
}

.team-member-detailed {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-8);
    align-items: start;
    background-color: hsl(var(--surface));
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow);
}

.team-photo-large {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
}

.team-info h3 {
    margin-bottom: var(--space-2);
}

.team-info h4 {
    color: hsl(var(--primary));
    margin-bottom: var(--space-4);
}

/* Company Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
}

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

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

.stat-card h3 {
    font-size: var(--text-4xl);
    color: hsl(var(--primary));
    margin-bottom: var(--space-2);
}

.stat-card p {
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.stat-card span {
    color: hsl(var(--text-muted));
    font-size: var(--text-sm);
}

/* Why Choose Us */
.choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.choose-item {
    margin-bottom: var(--space-8);
}

.choose-item h3 {
    margin-bottom: var(--space-3);
}

.choose-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Success Stories */
.success-grid {
    display: grid;
    gap: var(--space-8);
}

.success-story {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-6);
    background-color: hsl(var(--surface));
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.success-story:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.success-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
}

.success-content h3 {
    margin-bottom: var(--space-3);
}

.customer-name {
    color: hsl(var(--primary));
    font-weight: 600;
    font-style: italic;
}

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

.newsletter-content h2 {
    color: hsl(var(--text-light));
    margin-bottom: var(--space-4);
}

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

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

.newsletter-form input {
    flex: 1;
    padding: var(--space-3) var(--space-4);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--text-base);
}

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

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
}

.contact-details {
    margin: var(--space-8) 0;
}

.contact-detail {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
    align-items: flex-start;
}

.contact-icon img {
    width: 24px;
    height: 24px;
}

.contact-text h3 {
    margin-bottom: var(--space-2);
}

.contact-text span {
    color: hsl(var(--text-muted));
    font-size: var(--text-sm);
}

.social-section {
    margin-top: var(--space-8);
}

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

.social-links a {
    display: block;
    transition: var(--transition-fast);
}

.social-links a:hover {
    transform: scale(1.1);
}

.social-links img {
    width: 32px;
    height: 32px;
}

/* Forms */
.contact-form {
    background-color: hsl(var(--surface));
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow);
}

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

.form-group {
    margin-bottom: var(--space-6);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 2px solid hsl(var(--border));
    border-radius: var(--radius);
    font-size: var(--text-base);
    font-family: inherit;
    transition: var(--transition-fast);
}

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

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

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

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

/* Map Section */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    background-color: hsl(var(--surface));
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid hsl(var(--border));
}

.map-content {
    text-align: center;
    padding: var(--space-8);
}

.map-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-4);
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: var(--space-4) 0;
}

.hours-list li {
    margin-bottom: var(--space-2);
}

.map-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    margin-top: var(--space-6);
    flex-wrap: wrap;
}

/* FAQ Section */
.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

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

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

/* Thank You Page */
.thank-you {
    text-align: center;
    padding: var(--space-20) 0;
}

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

.thank-you-icon {
    margin-bottom: var(--space-6);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.thank-you h1 {
    font-size: var(--text-4xl);
    color: hsl(var(--primary));
    margin-bottom: var(--space-4);
}

.thank-you-message {
    font-size: var(--text-lg);
    margin-bottom: var(--space-12);
}

.next-steps {
    background-color: hsl(var(--surface));
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    margin: var(--space-12) 0;
    box-shadow: var(--shadow);
}

.steps {
    display: grid;
    gap: var(--space-6);
    margin-top: var(--space-6);
}

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

.step-icon img {
    width: 32px;
    height: 32px;
}

.step-content h3 {
    margin-bottom: var(--space-2);
}

.contact-options {
    margin: var(--space-12) 0;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    background-color: hsl(var(--surface));
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-method img {
    width: 32px;
    height: 32px;
}

.action-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    margin: var(--space-12) 0;
    flex-wrap: wrap;
}

.additional-info {
    margin-top: var(--space-12);
}

.explore-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.explore-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background-color: hsl(var(--surface));
    padding: var(--space-4);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
    color: hsl(var(--text));
}

.explore-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    text-decoration: none;
}

.explore-link img {
    width: 24px;
    height: 24px;
}

/* Legal Pages */
.legal-content {
    padding: var(--space-12) 0;
}

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

.document-meta {
    background-color: hsl(var(--surface-light));
    padding: var(--space-4);
    border-radius: var(--radius);
    margin-bottom: var(--space-8);
}

.document-meta p {
    margin-bottom: var(--space-2);
    font-size: var(--text-sm);
}

.document-meta p:last-child {
    margin-bottom: 0;
}

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

.legal-section:last-child {
    margin-bottom: 0;
}

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

.legal-section h3 {
    color: hsl(var(--text));
    margin-top: var(--space-6);
    margin-bottom: var(--space-3);
}

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

.cookie-settings-section {
    background-color: hsl(var(--primary-light));
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    margin-top: var(--space-8);
    text-align: center;
}

/* 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: 1000;
    padding: var(--space-4) 0;
}

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

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

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

/* Cookie Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: var(--space-4);
}

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

.modal-content h2 {
    margin-bottom: var(--space-6);
}

.cookie-categories {
    margin-bottom: var(--space-8);
}

.cookie-category {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    padding: var(--space-4);
    background-color: hsl(var(--surface-light));
    border-radius: var(--radius);
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: hsl(var(--text-muted));
    transition: var(--transition-fast);
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: hsl(var(--surface));
    transition: var(--transition-fast);
    border-radius: 50%;
}

input:checked + .slider {
    background-color: hsl(var(--primary));
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.category-info h3 {
    margin-bottom: var(--space-2);
}

.category-info p {
    margin-bottom: 0;
    font-size: var(--text-sm);
    color: hsl(var(--text-secondary));
}

.modal-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: flex-end;
}

/* CTA Section */
.cta {
    text-align: center;
}

.cta-content h2 {
    color: hsl(var(--text-light));
    margin-bottom: var(--space-6);
}

.cta-content p {
    color: hsl(var(--primary-light));
    margin-bottom: var(--space-8);
    font-size: var(--text-lg);
}

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

/* Footer */
.footer {
    background-color: hsl(var(--text));
    color: hsl(var(--text-light));
    padding: var(--space-16) 0 var(--space-8) 0;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: var(--space-4);
    color: hsl(var(--text-light));
}

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

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

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

.footer-section ul a {
    color: hsl(var(--text-muted));
    transition: var(--transition-fast);
}

.footer-section ul a:hover {
    color: hsl(var(--text-light));
    text-decoration: none;
}

.contact-info {
    margin-top: var(--space-4);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.contact-item img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.contact-item span {
    color: hsl(var(--text-muted));
}

.footer-bottom {
    padding-top: var(--space-8);
    border-top: 1px solid hsl(var(--text-secondary));
    text-align: center;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --container-padding: var(--space-4);
    }

    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background-color: hsl(var(--surface));
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: var(--space-8);
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

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

    .nav-menu li {
        margin-bottom: var(--space-4);
    }

    .hamburger {
        display: flex;
    }

    /* Hero Section */
    .hero .container {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }

    .hero-title {
        font-size: var(--text-3xl);
    }

    .hero-subtitle {
        font-size: var(--text-lg);
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .service-content {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .service-detailed.reverse .service-content {
        direction: ltr;
    }

    /* About */
    .about-content,
    .about-intro {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

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

    /* Team */
    .team-member-detailed {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .team-photo-large {
        max-width: 200px;
        margin: 0 auto;
    }

    /* Success Stories */
    .success-story {
        grid-template-columns: 1fr;
    }

    /* Choose Us */
    .choose-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

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

    .urgent-contact {
        grid-template-columns: 1fr;
    }

    .contact-method {
        text-align: center;
        flex-direction: column;
        gap: var(--space-3);
    }

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

    /* Cookie Banner */
    .cookie-content {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }

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

    /* Buttons */
    .hero-buttons,
    .cta-buttons,
    .action-buttons,
    .map-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        min-width: 200px;
    }

    /* Typography */
    .section-title {
        font-size: var(--text-3xl);
    }

    h1 {
        font-size: var(--text-3xl);
    }

    h2 {
        font-size: var(--text-2xl);
    }

    /* Legal Document */
    .legal-document {
        padding: var(--space-6);
    }

    /* Process Steps */
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* Even smaller screens */
    .hero-title {
        font-size: var(--text-2xl);
    }

    .section-title {
        font-size: var(--text-2xl);
    }

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

    .categories-grid,
    .values-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        min-width: 100%;
    }

    .modal-content {
        margin: var(--space-4);
        padding: var(--space-6);
    }

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

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

    .hero {
        margin-top: 0;
    }

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

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

    .section {
        page-break-inside: avoid;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary: 0 0% 0%;
        --background: 0 0% 100%;
        --text: 0 0% 0%;
        --border: 0 0% 50%;
    }
}

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

    html {
        scroll-behavior: auto;
    }
}

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

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

.skip-link:focus {
    top: 6px;
}
</pre></body></html>