/* ============================================
   CSS Reset & Base Styles
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

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

a {
    color: #3182ce;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2c5aa0;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.875rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: #4a5568;
}

/* ============================================
   Container & Layout
   ============================================ */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   Header & Navigation
   ============================================ */

.header {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 40px;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #2d3748;
    transition: all 0.3s ease;
}

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.nav-links.active {
    right: 0;
}

.nav-links li {
    margin-bottom: 1.5rem;
}

.nav-links a {
    color: #2d3748;
    font-size: 1.125rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3182ce;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #3182ce;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
}

.btn-secondary {
    background-color: #e2e8f0;
    color: #2d3748;
}

.btn-secondary:hover {
    background-color: #cbd5e0;
    color: #1a202c;
}

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

/* ============================================
   Hero Section
   ============================================ */

.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-content h1 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual img {
    max-width: 400px;
}

/* ============================================
   Page Hero
   ============================================ */

.page-hero {
    padding: 3rem 0;
    background-color: #f7fafc;
    text-align: center;
}

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

/* ============================================
   Sections
   ============================================ */

section {
    padding: 4rem 0;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
    text-align: center;
}

/* ============================================
   Philosophy Section
   ============================================ */

.philosophy {
    background-color: #f7fafc;
}

.philosophy-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.philosophy-item img {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
}

.philosophy-item h3 {
    margin-bottom: 1rem;
    color: #2d3748;
}

/* ============================================
   Featured Service
   ============================================ */

.featured-service {
    background-color: #edf2f7;
}

.featured-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.featured-text .label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #3182ce;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

/* ============================================
   Statistics
   ============================================ */

.statistics {
    background-color: #2d3748;
    color: #ffffff;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #63b3ed;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #e2e8f0;
}

/* ============================================
   Process Steps
   ============================================ */

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

.process-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3182ce;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
}

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

/* ============================================
   Testimonials
   ============================================ */

.testimonials {
    background-color: #f7fafc;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #3182ce;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

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

.testimonial-author strong {
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #718096;
    font-size: 0.875rem;
}

/* ============================================
   Benefits
   ============================================ */

.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-card {
    padding: 1.5rem;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.benefit-card h3 {
    color: #3182ce;
    margin-bottom: 0.75rem;
}

/* ============================================
   Areas Served
   ============================================ */

.areas-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.area-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.area-item img {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
}

.area-item h3 {
    margin-bottom: 0.75rem;
}

/* ============================================
   Insights
   ============================================ */

.insights {
    background-color: #edf2f7;
}

.insights-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.insight-main {
    flex: 1;
}

.insight-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.insight-box {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.insight-box h4 {
    color: #3182ce;
    margin-bottom: 0.75rem;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
    background-color: #ffffff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 0.5rem;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #3182ce;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    color: #4a5568;
    line-height: 1.7;
}

/* ============================================
   CTA Sections
   ============================================ */

.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

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

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

.cta-simple {
    background-color: #f7fafc;
    text-align: center;
}

/* ============================================
   Services
   ============================================ */

.services-intro {
    background-color: #ffffff;
}

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

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background-color: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #3182ce;
    box-shadow: 0 8px 20px rgba(49, 130, 206, 0.15);
    transform: translateY(-4px);
}

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

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

.service-card h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #4a5568;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3182ce;
    font-weight: bold;
}

.service-pricing {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #3182ce;
}

.price-detail {
    color: #718096;
    font-size: 0.875rem;
}

/* ============================================
   Contact Page
   ============================================ */

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-block {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-item img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.info-item strong {
    display: block;
    color: #2d3748;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.info-item a {
    color: #3182ce;
}

.info-note {
    font-size: 0.875rem;
    color: #718096;
    font-style: italic;
}

.directions {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.directions h3 {
    margin-bottom: 1rem;
    color: #2d3748;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #2d3748;
}

.time {
    color: #4a5568;
}

.hours-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #718096;
}

.info-box-highlight {
    padding: 2rem;
    background-color: #ebf8ff;
    border-left: 4px solid #3182ce;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.info-box-highlight h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.info-box {
    padding: 1.5rem;
    background-color: #f7fafc;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.info-box h3 {
    color: #2d3748;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.company-item strong {
    display: block;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.company-item p {
    color: #4a5568;
}

.accessibility-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.access-item {
    padding: 1.5rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.access-item h3 {
    margin-bottom: 0.75rem;
    color: #2d3748;
}

/* ============================================
   About Page
   ============================================ */

.content-columns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-box {
    padding: 1.5rem;
    background-color: #f7fafc;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.info-box h3 {
    color: #3182ce;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-box p {
    color: #2d3748;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.principle-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.principle {
    padding: 1.5rem;
    background-color: #f7fafc;
    border-left: 4px solid #3182ce;
    border-radius: 4px;
}

.principle h3 {
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.team-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-member {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.member-visual img {
    max-width: 300px;
    margin: 0 auto;
}

.member-title {
    color: #3182ce;
    font-weight: 600;
    margin-bottom: 1rem;
}

.credentials {
    list-style: none;
    margin-top: 1rem;
}

.credentials li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    color: #4a5568;
    font-size: 0.9375rem;
}

.credentials li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3182ce;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #cbd5e0;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}

.timeline-year {
    position: absolute;
    left: -2rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3182ce;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 50%;
    margin-left: -32px;
}

.timeline-content {
    padding-left: 2rem;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.timeline-content p {
    color: #4a5568;
}

.commitment-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.commitment-item {
    padding: 1.5rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.commitment-item h3 {
    color: #3182ce;
    margin-bottom: 0.75rem;
}

/* ============================================
   Thank You Page
   ============================================ */

.thank-you-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.thank-you-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

.thank-you-hero h1 {
    color: #ffffff;
}

.thank-you-info {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: left;
}

.thank-you-info h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.step-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-weight: 700;
    border-radius: 50%;
}

.step-content h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.step-content p {
    opacity: 0.95;
    margin-bottom: 0;
}

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

.wait-suggestions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.suggestion {
    text-align: center;
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.suggestion img {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
}

.suggestion h3 {
    margin-bottom: 0.75rem;
}

.suggestion a {
    color: #3182ce;
    font-weight: 600;
}

/* ============================================
   Legal Pages
   ============================================ */

.legal-page {
    padding: 4rem 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    margin-bottom: 0.5rem;
}

.legal-intro {
    color: #718096;
    font-size: 0.9375rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.legal-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.legal-content a {
    color: #3182ce;
    text-decoration: underline;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section p {
    color: #cbd5e0;
    font-size: 0.9375rem;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #cbd5e0;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    text-align: center;
}

.footer-bottom p {
    color: #cbd5e0;
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ============================================
   Cookie Banner
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ============================================
   Modal
   ============================================ */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    padding: 1rem;
    overflow-y: auto;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #ffffff;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

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

.modal-close {
    font-size: 2rem;
    color: #718096;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #2d3748;
}

.modal-body {
    padding: 1.5rem;
}

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

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

.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;
    color: #2d3748;
}

.cookie-option p {
    color: #718096;
    font-size: 0.875rem;
    margin-bottom: 0;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
}

/* ============================================
   Comparison Grid
   ============================================ */

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

.comparison-item {
    padding: 1.5rem;
    background-color: #f7fafc;
    border-left: 4px solid #3182ce;
    border-radius: 4px;
}

.comparison-item h3 {
    color: #2d3748;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

/* ============================================
   Service Benefits & Process
   ============================================ */

.service-benefits,
.process-detail {
    background-color: #f7fafc;
}

.process-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-block {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.process-block h3 {
    color: #3182ce;
    margin-bottom: 0.75rem;
}

/* ============================================
   Responsive Design - Tablet
   ============================================ */

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .menu-toggle {
        display: none;
    }

    .nav-links {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        background-color: transparent;
    }

    .nav-links li {
        margin-bottom: 0;
        margin-left: 2rem;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .hero .container {
        flex-direction: row;
        align-items: center;
    }

    .philosophy-blocks {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .featured-content {
        flex-direction: row;
        align-items: center;
    }

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

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

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

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

    .benefits-layout {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

    .area-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .insights-content {
        flex-direction: row;
    }

    .insight-sidebar {
        flex: 0 0 300px;
    }

    .service-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .contact-layout {
        flex-direction: row;
    }

    .contact-primary {
        flex: 2;
    }

    .contact-secondary {
        flex: 1;
    }

    .company-details {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .company-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .accessibility-features {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .access-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .content-columns {
        flex-direction: row;
    }

    .column-main {
        flex: 2;
    }

    .column-sidebar {
        flex: 0 0 280px;
    }

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

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

    .team-member {
        flex-direction: row;
    }

    .member-visual {
        flex: 0 0 250px;
    }

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

    .commitment-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .wait-suggestions {
        flex-direction: row;
    }

    .suggestion {
        flex: 1;
    }

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

    .footer-section {
        flex: 1;
    }

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

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

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

    .comparison-item {
        flex: 1 1 calc(50% - 0.75rem);
    }
}

/* ============================================
   Responsive Design - Desktop
   ============================================ */

@media (min-width: 1024px) {
    .philosophy-item {
        flex: 1 1 calc(33.333% - 1.333rem);
    }

    .stat-item {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .benefits-layout {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-card {
        flex: 1 1 calc(33.333% - 1rem);
    }

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

    .area-item {
        flex: 1 1 calc(33.333% - 1.333rem);
    }

    .service-cards {
        flex-wrap: wrap;
    }

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

    .values-grid {
        flex-wrap: wrap;
    }

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

    .comparison-grid {
        flex-wrap: wrap;
    }

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

    .testimonial {
        flex: 1 1 calc(33.333% - 1.333rem);
    }
}

/* ============================================
   Utility Classes
   ============================================ */

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

.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-width: 0;
}