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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --bg-gray: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

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

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

ul {
    list-style-position: inside;
}

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

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

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

.nav-brand {
    display: flex;
    align-items: center;
}

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

.nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
    list-style: none;
}

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

.nav-menu li {
    margin: 0.5rem 0;
}

.nav-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background-color: var(--bg-gray);
    border-radius: 4px;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-content {
    text-align: center;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 300px;
}

/* Page Hero */
.page-hero {
    padding: 3rem 0;
    background-color: var(--bg-dark);
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 3rem 0;
}

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

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

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

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

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

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

/* Grid Layouts */
.intro-grid,
.philosophy-grid,
.services-grid,
.benefits-grid,
.values-grid,
.team-description,
.contact-grid,
.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Stats */
.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--bg-gray);
    border-radius: 8px;
}

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

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

.stats-full-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-full-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-gray);
    border-radius: 12px;
}

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

.stat-full-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.stat-full-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Cards */
.philosophy-card,
.service-card,
.value-card,
.benefit-box,
.testimonial-card,
.info-box {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.philosophy-icon,
.value-icon,
.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.service-card {
    position: relative;
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.service-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature-tag {
    background-color: var(--bg-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-color);
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
}

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

.step-content h3 {
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card {
    background-color: var(--bg-gray);
}

.testimonial-text {
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--secondary-color);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Benefits */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.benefit-content h3 {
    margin-bottom: 0.5rem;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background-color: white;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: background-color 0.3s ease;
}

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--bg-gray);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.25rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

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

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Services Page */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-detailed {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
}

.service-detailed.featured-service {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(59, 130, 246, 0.03) 100%);
}

.service-badge-ribbon {
    position: absolute;
    top: 20px;
    right: -5px;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.meta-badge {
    background-color: var(--bg-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-color);
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

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

.price-period {
    color: var(--text-light);
}

.service-description {
    margin-bottom: 1.5rem;
}

.service-description p {
    margin-bottom: 1rem;
}

.service-includes h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-note {
    margin-top: 1rem;
    padding: 1rem;
    background-color: var(--bg-gray);
    border-radius: 6px;
    font-size: 0.95rem;
}

/* Comparison Table */
.comparison-table {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-row {
    display: flex;
    flex-direction: column;
}

.comparison-row.comparison-header {
    background-color: var(--secondary-color);
    color: white;
}

.comparison-row:not(.comparison-header):nth-child(even) {
    background-color: var(--bg-gray);
}

.comparison-cell {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-cell strong {
    display: block;
    margin-bottom: 0.5rem;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    padding-left: 2rem;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
}

.timeline-year {
    position: absolute;
    left: -2rem;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.timeline-content {
    margin-left: 3rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-info,
.contact-additional {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-block {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-list {
    list-style: none;
    padding-left: 1.5rem;
}

.contact-list li {
    padding: 0.25rem 0;
    position: relative;
}

.contact-list li:before {
    content: "•";
    position: absolute;
    left: -1rem;
    color: var(--primary-color);
}

.info-box {
    background-color: var(--bg-gray);
    padding: 1.5rem;
    border-radius: 8px;
}

.info-box h3 {
    margin-bottom: 1rem;
}

/* Directions */
.directions-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.direction-option {
    padding: 1.5rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.direction-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.direction-option h3 {
    margin-bottom: 1rem;
}

.direction-option p {
    margin-bottom: 0.75rem;
}

.direction-option p:last-child {
    margin-bottom: 0;
}

/* Company Info */
.company-details {
    background-color: var(--bg-gray);
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
}

.company-details p {
    margin-bottom: 0.75rem;
}

/* Location Description */
.location-description,
.approach-content,
.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.location-description p,
.approach-content p,
.mission-content p {
    margin-bottom: 1rem;
}

.approach-item {
    margin-bottom: 2rem;
}

.approach-item h3 {
    margin-bottom: 1rem;
}

.mission-statement {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Thank You Page */
.thank-you-section {
    padding: 4rem 0;
    text-align: center;
}

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

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.thank-you-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin: 2rem 0;
}

.next-steps {
    margin: 3rem 0;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.step-box {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.step-box .step-number {
    margin: 0 auto 1rem;
}

.step-box h3 {
    margin-bottom: 0.75rem;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.waiting-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.waiting-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.waiting-item h3 {
    margin-bottom: 1rem;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

.link-arrow:hover {
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 0;
    background-color: var(--bg-gray);
}

.legal-page h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.legal-date {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.legal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

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

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.legal-section h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
}

.legal-section p {
    margin-bottom: 1rem;
}

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

.legal-section li {
    margin-bottom: 0.5rem;
}

/* GDPR Table */
.gdpr-table {
    margin: 1rem 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.gdpr-row {
    display: flex;
    flex-direction: column;
}

.gdpr-row:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.gdpr-row.gdpr-header {
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
}

.gdpr-row:not(.gdpr-header):nth-child(even) {
    background-color: var(--bg-gray);
}

.gdpr-cell {
    padding: 1rem;
}

/* Cookies Table */
.cookies-table {
    margin: 1rem 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-row {
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.cookie-row:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.cookie-row.cookie-header {
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
}

.cookie-row:not(.cookie-header):nth-child(even) {
    background-color: var(--bg-gray);
}

.cookie-row div {
    padding: 0.25rem 0;
}

.cookie-row div:first-child {
    font-weight: 600;
}

/* Enrollment Steps */
.enrollment-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.enrollment-step h3 {
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-grid {
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3,
.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

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

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

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

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

.cookie-modal-content {
    background-color: white;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

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

.cookie-modal-header h3 {
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-close:hover {
    color: var(--text-color);
}

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

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    gap: 1rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.cookie-option strong {
    display: block;
    margin-bottom: 0.25rem;
}

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

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

/* Background Sections */
.intro-section,
.philosophy-section,
.services-highlight,
.process-section,
.testimonials-section,
.benefits-section,
.faq-section,
.story-section,
.values-section,
.team-intro-section,
.achievements-section,
.approach-section,
.stats-full-section,
.mission-section,
.services-main-section,
.comparison-section,
.benefits-overview,
.process-enrollment,
.faq-services,
.contact-main-section,
.directions-section,
.about-location-section,
.company-info-section,
.contact-faq-section,
.while-waiting-section {
    background-color: var(--bg-color);
}

.intro-section:nth-child(even),
.philosophy-section:nth-child(even),
.services-highlight:nth-child(even),
.process-section:nth-child(even),
.testimonials-section:nth-child(even),
.benefits-section:nth-child(even),
.story-section:nth-child(even),
.values-section:nth-child(even),
.achievements-section:nth-child(even),
.stats-full-section:nth-child(even),
.comparison-section:nth-child(even),
.process-enrollment:nth-child(even),
.directions-section:nth-child(even),
.company-info-section:nth-child(even),
.while-waiting-section:nth-child(even) {
    background-color: var(--bg-gray);
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero-content {
        margin-bottom: 0;
    }

    .hero .container {
        display: flex;
        align-items: center;
        gap: 3rem;
    }

    .hero-content,
    .hero-image {
        flex: 1;
    }

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

    .hero-image img {
        max-width: 100%;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        width: auto;
        margin-top: 0;
    }

    .nav-menu li {
        margin: 0 0.5rem;
    }

    .nav-toggle {
        display: none;
    }

    .intro-grid,
    .contact-grid {
        flex-direction: row;
        align-items: flex-start;
    }

    .intro-text,
    .contact-info {
        flex: 1.5;
    }

    .intro-stats,
    .contact-additional {
        flex: 1;
    }

    .philosophy-grid,
    .services-grid,
    .benefits-grid,
    .values-grid,
    .testimonials-grid,
    .directions-grid,
    .waiting-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-card,
    .value-card,
    .direction-option,
    .waiting-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .benefit-box {
        flex: 1 1 calc(50% - 1rem);
    }

    .testimonial-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .stats-full-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-full-item {
        flex: 1 1 calc(33.333% - 1rem);
    }

    .steps-grid {
        flex-direction: row;
    }

    .step-box {
        flex: 1;
    }

    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }

    .service-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .comparison-row {
        flex-direction: row;
    }

    .comparison-cell {
        flex: 1;
        border-right: 1px solid var(--border-color);
    }

    .comparison-cell:last-child {
        border-right: none;
    }

    .gdpr-row {
        flex-direction: row;
    }

    .gdpr-cell {
        flex: 1;
        border-right: 1px solid var(--border-color);
    }

    .gdpr-cell:last-child {
        border-right: none;
    }

    .cookie-row {
        flex-direction: row;
    }

    .cookie-row div {
        flex: 1;
        padding: 1rem;
    }

    .enrollment-steps {
        flex-direction: row;
    }

    .enrollment-step {
        flex: 1;
    }

    .footer-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-column {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        flex: 1;
    }

    .cookie-actions {
        flex-shrink: 0;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .page-hero h1 {
        font-size: 3rem;
    }

    section {
        padding: 4rem 0;
    }

    .philosophy-card,
    .value-card {
        flex: 1 1 calc(33.333% - 1.34rem);
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }
}

/* Accessibility */
.nav-toggle:focus,
.faq-question:focus,
.btn:focus,
.cookie-modal-close:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

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