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

:root {
    /* Primary Colors - Sports theme with Italian touch */
    --primary-color: 220 85% 57%; /* #1e40af - Professional blue */
    --primary-light: 220 85% 65%; /* Lighter blue */
    --primary-dark: 220 85% 45%; /* Darker blue */
    
    /* Secondary Colors */
    --secondary-color: 142 76% 36%; /* #16a34a - Energy green */
    --secondary-light: 142 76% 45%;
    --secondary-dark: 142 76% 30%;
    
    /* Accent Colors */
    --accent-color: 24 95% 53%; /* #ea580c - Dynamic orange */
    --accent-light: 24 95% 60%;
    --accent-dark: 24 95% 45%;
    
    /* Neutral Colors */
    --text-color: 222 84% 5%; /* #0c0a09 - Deep black */
    --text-muted: 215 16% 47%; /* #64748b - Muted gray */
    --text-light: 210 40% 98%; /* #f8fafc - Light gray */
    
    /* Background Colors */
    --background: 0 0% 100%; /* #ffffff - Pure white */
    --background-alt: 210 40% 98%; /* #f8fafc - Light background */
    --light-bg: 220 13% 96%; /* #f1f5f9 - Very light gray */
    
    /* Border and Surface */
    --border-color: 214 32% 91%; /* #e2e8f0 - Light border */
    --surface: 0 0% 100%; /* #ffffff - White surface */
    --shadow-color: 220 26% 14%; /* #1e293b - Dark shadow */
    
    /* Status Colors */
    --success-color: 142 76% 36%; /* #16a34a - Success green */
    --warning-color: 45 93% 47%; /* #eab308 - Warning yellow */
    --error-color: 0 84% 60%; /* #ef4444 - Error red */
    
    /* Typography */
    --font-family-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-family-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --element-spacing: 24px;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 20px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 hsl(var(--shadow-color) / 0.05);
    --shadow: 0 1px 3px 0 hsl(var(--shadow-color) / 0.1), 0 1px 2px -1px hsl(var(--shadow-color) / 0.1);
    --shadow-md: 0 4px 6px -1px hsl(var(--shadow-color) / 0.1), 0 2px 4px -2px hsl(var(--shadow-color) / 0.1);
    --shadow-lg: 0 10px 15px -3px hsl(var(--shadow-color) / 0.1), 0 4px 6px -4px hsl(var(--shadow-color) / 0.1);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
}

/* Global Styles */
html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
    color: hsl(var(--text-muted));
}

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

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

/* Layout Components */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: var(--section-padding);
}

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

.section-header h2 {
    margin-bottom: 1rem;
    color: hsl(var(--text-color));
}

.section-header p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.5;
    min-height: 44px;
}

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

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

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

.btn-secondary:hover {
    background-color: hsl(var(--secondary-dark));
    border-color: hsl(var(--secondary-dark));
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background-color: hsl(var(--primary-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.navbar {
    padding: 1rem 0;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

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

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

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

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

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

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, hsl(var(--primary-color) / 0.8), hsl(var(--secondary-color) / 0.6));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    font-size: 1.125rem;
    padding: 16px 32px;
    background-color: hsl(var(--accent-color));
    border-color: hsl(var(--accent-color));
}

.hero-cta:hover {
    background-color: hsl(var(--accent-dark));
    border-color: hsl(var(--accent-dark));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px hsl(var(--accent-color) / 0.3);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, hsl(var(--primary-color)), hsl(var(--secondary-color)));
    color: white;
    text-align: center;
    padding: 120px 0 80px;
    margin-top: 70px;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Grid Layouts */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

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

/* Cards */
.goal-card,
.service-card,
.value-card {
    background: hsl(var(--surface));
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition-normal);
    border: 1px solid hsl(var(--border-color));
}

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

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

/* Team Members */
.team-member {
    text-align: center;
    background: hsl(var(--surface));
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition-normal);
}

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

.member-avatar {
    margin-bottom: 1rem;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.team-member h3 {
    color: hsl(var(--text-color));
    margin-bottom: 0.5rem;
}

.team-member p {
    font-weight: 600;
    color: hsl(var(--primary-color));
    margin-bottom: 0.5rem;
}

.team-member span {
    font-size: 0.875rem;
    color: hsl(var(--text-muted));
}

/* Team Detailed */
.team-detailed-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.team-member-detailed {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    background: hsl(var(--surface));
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.member-avatar-large {
    flex-shrink: 0;
}

.avatar-placeholder {
    border-radius: 50%;
}

.member-info h3 {
    color: hsl(var(--text-color));
    margin-bottom: 0.25rem;
}

.member-info h4 {
    color: hsl(var(--primary-color));
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.specialty {
    background-color: hsl(var(--primary-color) / 0.1);
    color: hsl(var(--primary-color));
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Success Stats */
.success-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    background: hsl(var(--surface));
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition-normal);
    border: 1px solid hsl(var(--border-color));
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: hsl(var(--primary-color));
    margin-bottom: 0.5rem;
}

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

/* Services */
.services-preview {
    background-color: hsl(var(--light-bg));
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.service-detail {
    padding: 60px 0;
}

.service-detail.alt {
    background-color: hsl(var(--light-bg));
}

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

.service-badge {
    display: inline-block;
    background-color: hsl(var(--accent-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-features h3 {
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: hsl(var(--text-muted));
}

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

.service-pricing {
    margin-top: 2rem;
}

.price-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: hsl(var(--light-bg));
    border-radius: var(--border-radius);
    border: 1px solid hsl(var(--border-color));
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--primary-color));
}

.price-desc {
    color: hsl(var(--text-muted));
}

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

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

.newsletter p {
    color: white;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

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

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

.newsletter-form input:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Contact Page */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    text-align: center;
    background: hsl(var(--surface));
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition-normal);
}

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

.contact-icon {
    margin-bottom: 1rem;
}

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

.contact-link {
    color: hsl(var(--primary-color));
    font-weight: 600;
    text-decoration: underline;
}

/* Forms */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: hsl(var(--surface));
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid hsl(var(--border-color));
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition-fast);
    background-color: hsl(var(--surface));
}

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

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

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

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

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

.error-message {
    color: hsl(var(--error-color));
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: hsl(var(--error-color));
}

.form-group.error .error-message {
    display: block;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.faq-item {
    border: 1px solid hsl(var(--border-color));
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: hsl(var(--surface));
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background-color: hsl(var(--light-bg));
}

.faq-question h3 {
    margin: 0;
    font-size: 1.125rem;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: hsl(var(--primary-color));
    transition: var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

/* Map */
.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.map-placeholder {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-svg {
    display: block;
    width: 100%;
    height: 400px;
}

.directions-info {
    background: hsl(var(--surface));
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    height: fit-content;
}

.transport-options {
    display: grid;
    gap: 1rem;
}

.transport-option h4 {
    margin-bottom: 0.5rem;
    color: hsl(var(--text-color));
}

.transport-option p {
    font-size: 0.875rem;
    margin: 0;
}

/* Thanks Page */
.thanks-main {
    padding-top: 70px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thanks-section {
    padding: 4rem 0;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    color: hsl(var(--success-color));
    margin-bottom: 0.5rem;
}

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

.thanks-message {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.info-card {
    background: hsl(var(--surface));
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: left;
}

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

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

.info-card li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

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

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

/* Legal Pages */
.legal-content {
    padding: 2rem 0 4rem;
}

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

.legal-meta {
    border-bottom: 1px solid hsl(var(--border-color));
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.legal-meta p {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: hsl(var(--text-muted));
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section h2 {
    color: hsl(var(--text-color));
    border-bottom: 2px solid hsl(var(--primary-color));
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    color: hsl(var(--text-color));
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: hsl(var(--text-muted));
}

.legal-section strong {
    color: hsl(var(--text-color));
}

/* Cookie Tables */
.cookie-table {
    margin: 1rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid hsl(var(--border-color));
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

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

.cookie-table td {
    color: hsl(var(--text-muted));
    font-size: 0.875rem;
}

.cookie-settings-link {
    margin: 2rem 0;
    text-align: center;
}

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

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

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
}

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

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 1rem;
}

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

.social-links a {
    color: hsl(var(--text-light));
    transition: var(--transition-fast);
}

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

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.contact-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

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

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

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

.footer-bottom p {
    margin: 0;
    opacity: 0.6;
    font-size: 0.875rem;
}

/* Cookie Banner & Modal */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: hsl(var(--surface));
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    padding: 1.5rem;
    border-top: 1px solid hsl(var(--border-color));
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

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

.cookie-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

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

.cookie-content p {
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

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

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

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid hsl(var(--border-color));
}

.cookie-modal-header h3 {
    margin: 0;
    color: hsl(var(--text-color));
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: hsl(var(--text-muted));
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}

.close-btn:hover {
    background-color: hsl(var(--light-bg));
    color: hsl(var(--text-color));
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-category {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid hsl(var(--border-color));
}

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

.cookie-category div {
    flex: 1;
}

.cookie-category h4 {
    margin-bottom: 0.5rem;
    color: hsl(var(--text-color));
}

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

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid hsl(var(--border-color));
    text-align: center;
}

/* Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin-left: 1rem;
    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(--border-color));
    transition: var(--transition-fast);
    border-radius: 34px;
}

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

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

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

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

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

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

.cta-content p {
    color: white;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.mission-card {
    background: hsl(var(--surface));
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition-normal);
}

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

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

/* Value Card Icons */
.value-icon {
    margin-bottom: 1rem;
}

/* Content Visual */
.content-visual,
.service-detail-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-illustration,
.service-illustration {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: hsl(var(--surface));
        width: 100%;
        text-align: center;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .content-grid,
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .team-member-detailed {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .thanks-info {
        grid-template-columns: 1fr;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .page-header {
        padding: 100px 0 60px;
    }
    
    .contact-form-container,
    .legal-document {
        padding: 2rem 1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-modal {
        padding: 0.5rem;
    }
    
    .cookie-modal-content {
        margin: 0;
    }
}

/* Print Styles */
@media print {
    .header,
    .cookie-banner,
    .cookie-modal,
    .footer {
        display: none;
    }
    
    .page-header {
        margin-top: 0;
        background: none;
        color: black;
    }
    
    * {
        box-shadow: none !important;
    }
    
    .legal-document {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: 220 100% 40%;
        --text-color: 0 0% 0%;
        --background: 0 0% 100%;
        --border-color: 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 styles for accessibility */
*:focus-visible {
    outline: 2px solid hsl(var(--primary-color));
    outline-offset: 2px;
}

/* Utility classes */
.text-center {
    text-align: center;
}

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

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

.hidden {
    display: none;
}

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