/* Reset and 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: #2c3e50;
    background-color: #fff;
}

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

a {
    color: #2c3e50;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

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

/* Header and Navigation */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.nav-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.nav-menu a {
    display: block;
    padding: 1rem 20px;
    color: #2c3e50;
    transition: background-color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #f8f9fa;
    color: #1a252f;
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        border: none;
        box-shadow: none;
    }

    .nav-menu li {
        border: none;
    }

    .nav-menu a {
        padding: 0.5rem 1rem;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background-color: transparent;
        color: #7a8a99;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero {
        padding: 6rem 0;
    }

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

/* 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;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #2c3e50;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #2c3e50;
    border-color: #2c3e50;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #fff;
}

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

/* Section Styles */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

section p {
    color: #5a6c7d;
    line-height: 1.7;
}

.section-intro {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 800px;
}

/* Philosophy Section */
.philosophy {
    background-color: #f8f9fa;
}

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

.philosophy-text p {
    margin-bottom: 1rem;
}

.philosophy-icon {
    display: flex;
    justify-content: center;
}

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

@media (min-width: 768px) {
    .philosophy-content {
        flex-direction: row;
        align-items: center;
    }

    .philosophy-text {
        flex: 2;
    }

    .philosophy-icon {
        flex: 1;
    }
}

/* Features Grid */
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s;
}

.feature-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.25rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a252f;
}

@media (min-width: 768px) {
    .features-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

/* Collections Preview */
.collections-preview {
    background-color: #f8f9fa;
}

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

.collection-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.collection-icon {
    width: 80px;
    height: 80px;
}

.collection-info h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: #1a252f;
}

.price-range {
    display: inline-block;
    margin-top: 0.75rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

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

@media (min-width: 768px) {
    .collection-item {
        flex-direction: row;
        align-items: center;
    }

    .collection-icon {
        width: 100px;
        height: 100px;
    }
}

/* Stats Section */
.stats {
    background-color: #2c3e50;
    color: #fff;
}

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .stats-grid {
        flex-direction: row;
        justify-content: space-around;
    }

    .stat-item {
        flex: 1;
    }
}

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

.testimonial-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2c3e50;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: #1a252f;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #7a8a99;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 0 0 calc(33.333% - 1.35rem);
    }
}

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

.process-step {
    position: relative;
    padding-left: 80px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: #2c3e50;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a252f;
}

@media (min-width: 768px) {
    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 0 0 calc(50% - 1rem);
    }
}

/* Values */
.values {
    background-color: #f8f9fa;
}

.values-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.value-block {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.value-block h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

@media (min-width: 768px) {
    .values-content {
        flex-direction: row;
    }

    .value-block {
        flex: 1;
    }
}

/* FAQ Section */
.faq-list {
    max-width: 900px;
    margin: 2rem auto 0;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #1a252f;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

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

.faq-answer p {
    padding-bottom: 1.5rem;
    line-height: 1.7;
}

/* Trust Section */
.trust {
    background-color: #f8f9fa;
}

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

.trust-content p {
    margin-bottom: 1rem;
}

/* CTA Sections */
.cta-final {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: #fff;
}

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

.cta-final h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-final p {
    color: #e0e0e0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-section {
    text-align: center;
    background-color: #f8f9fa;
}

.cta-section p {
    max-width: 700px;
    margin: 1rem auto 2rem;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p,
.footer-links a {
    color: #c8d0d8;
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #c8d0d8;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #2c3e50;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 1.5rem;
    z-index: 9999;
    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 {
    color: #2c3e50;
    margin: 0;
}

.cookie-content a {
    color: #2c3e50;
    text-decoration: underline;
}

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

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-wrap: nowrap;
    }
}

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

.modal.active {
    display: flex;
}

.modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #7a8a99;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

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

.cookie-preferences {
    margin: 2rem 0;
}

.cookie-type {
    margin-bottom: 2rem;
}

.cookie-type-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-type h3 {
    font-size: 1.1rem;
    color: #1a252f;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2c3e50;
}

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

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.page-intro {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .page-hero {
        padding: 4rem 0;
    }

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

/* Story Section */
.story-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Team Grid */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.team-icon {
    margin: 0 auto 1.5rem;
}

.team-icon img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.team-member h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: #1a252f;
}

.role {
    color: #7a8a99;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

@media (min-width: 768px) {
    .team-grid {
        flex-direction: row;
    }

    .team-member {
        flex: 1;
    }
}

/* Approach Section */
.approach-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.approach-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

@media (min-width: 768px) {
    .approach-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

/* Timeline */
.timeline {
    margin-top: 2rem;
    position: relative;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a252f;
}

@media (min-width: 768px) {
    .timeline-item {
        flex-direction: row;
        gap: 2rem;
    }

    .timeline-year {
        flex: 0 0 120px;
    }

    .timeline-content {
        flex: 1;
        padding-left: 2rem;
        border-left: 3px solid #e0e0e0;
    }
}

/* Principles List */
.principles-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.principle {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2c3e50;
}

.principle h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a252f;
}

@media (min-width: 768px) {
    .principles-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

/* Commitment List */
.commitment-list {
    max-width: 800px;
    margin: 2rem auto 0;
    list-style: none;
}

.commitment-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    line-height: 1.7;
    color: #5a6c7d;
}

.commitment-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Sustainability Section */
.sustainability-content {
    max-width: 900px;
    margin: 0 auto;
}

.sustainability-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Services Page */
.services-intro {
    background-color: #f8f9fa;
}

.intro-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.services-list {
    margin-top: 3rem;
}

.service-card-large {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: box-shadow 0.3s;
}

.service-card-large:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.service-icon-large {
    display: flex;
    justify-content: center;
}

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

.service-details h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

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

.service-price {
    display: flex;
    flex-direction: column;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.price-label {
    font-size: 0.9rem;
    color: #7a8a99;
    margin-bottom: 0.25rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

@media (min-width: 768px) {
    .service-card-large {
        flex-direction: row;
        align-items: flex-start;
    }

    .service-icon-large {
        flex: 0 0 120px;
    }

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

    .service-details {
        flex: 1;
    }
}

/* Service Benefits */
.service-benefits {
    background-color: #f8f9fa;
}

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

.benefit-item {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.benefit-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a252f;
}

@media (min-width: 768px) {
    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

/* Process Service */
.process-service {
    background-color: #f8f9fa;
}

.process-content {
    margin-top: 2rem;
}

.process-step-horizontal {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.step-num {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    background-color: #2c3e50;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
}

.process-step-horizontal h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a252f;
}

/* Quality Guarantee */
.quality-guarantee {
    background-color: #f8f9fa;
}

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

.guarantee-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Contact Page */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.contact-icon {
    margin: 0 auto 1.5rem;
}

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

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.contact-card p {
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: #2c3e50;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    color: #7a8a99;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .contact-grid {
        flex-direction: row;
    }

    .contact-card {
        flex: 1;
    }
}

/* About Location */
.about-location {
    background-color: #f8f9fa;
}

.location-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

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

.direction-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

@media (min-width: 768px) {
    .directions-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

/* Visit Info */
.visit-info {
    background-color: #f8f9fa;
}

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

.info-block {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a252f;
}

@media (min-width: 768px) {
    .info-blocks {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-block {
        flex: 0 0 calc(50% - 1rem);
    }
}

/* Company Info Section */
.company-info-section {
    background-color: #f8f9fa;
}

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

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

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

.thank-you-icon {
    margin: 0 auto 2rem;
}

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

.thank-you-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.thank-you-text {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

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

@media (min-width: 768px) {
    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }
}

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

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

.legal-text h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: #1a252f;
}

.legal-text h3 {
    font-size: 1.35rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.legal-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-text ul,
.legal-text ol {
    margin: 1rem 0 1.5rem 2rem;
    list-style: disc;
}

.legal-text ol {
    list-style: decimal;
}

.legal-text li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.legal-text strong {
    color: #2c3e50;
}

.legal-text em {
    color: #7a8a99;
}

.legal-text a {
    color: #2c3e50;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    margin: 1.5rem 0;
    background-color: #f8f9fa;
    border-radius: 6px;
    overflow: hidden;
}

.cookie-table tr {
    border-bottom: 1px solid #e0e0e0;
}

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

.cookie-table td {
    padding: 1rem;
    line-height: 1.6;
}

.cookie-table td:first-child {
    width: 30%;
    font-weight: 600;
}

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }