/* 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: #333;
    background-color: #fff;
}

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

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

a:hover {
    color: #d35400;
}

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

/* Header and Navigation */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e67e22;
}

.logo:hover {
    color: #d35400;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 2rem;
}

.nav-menu li a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #e67e22;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 1.5rem 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    gap: 1rem;
}

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

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

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #555;
}

/* Page Hero */
.page-hero {
    padding: 3rem 0;
    background-color: #f5f5f5;
    text-align: center;
}

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

.lead-text {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.btn-primary:hover {
    background-color: #d35400;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.btn-secondary {
    background-color: #fff;
    color: #e67e22;
    border: 2px solid #e67e22;
}

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

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

section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

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

.section-intro-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.125rem;
    color: #555;
}

.intro-text {
    font-size: 1.125rem;
    color: #555;
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

/* Grids */
.highlights-grid,
.areas-grid,
.services-grid,
.benefits-list,
.team-grid,
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

/* Cards */
.highlight-card,
.area-card,
.service-card,
.benefit-item,
.team-member,
.testimonial-card {
    flex: 1 1 100%;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover,
.area-card:hover,
.service-card:hover,
.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.highlight-card h3,
.area-card h3,
.service-card h3,
.benefit-item h3,
.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.highlight-card p,
.area-card p,
.service-card p,
.benefit-item p {
    color: #666;
    line-height: 1.7;
}

/* Service Cards */
.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
}

.service-description {
    color: #666;
    line-height: 1.7;
}

/* Statistics */
.statistics {
    background-color: #2c3e50;
    color: #fff;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.stat-item {
    flex: 1 1 200px;
    text-align: center;
}

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

.stat-label {
    font-size: 1.125rem;
    color: #ecf0f1;
}

/* Testimonials */
.testimonial-card {
    background-color: #fff;
    border-left: 4px solid #e67e22;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
}

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

.step,
.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.step h3,
.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step p,
.step-content p {
    color: #666;
    line-height: 1.7;
}

.step-content {
    flex: 1;
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

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

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-icon {
    font-size: 1.5rem;
    color: #e67e22;
    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: #fff;
}

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

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

/* Story Blocks */
.story-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.story-block {
    flex: 1 1 100%;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.story-block h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #e67e22;
}

.story-block p {
    color: #666;
    line-height: 1.7;
}

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

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

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.point h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.point p {
    color: #666;
    line-height: 1.7;
}

/* Values */
.values-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1 1 100%;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    border-left: 4px solid #e67e22;
}

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    color: #666;
    line-height: 1.7;
}

/* Team */
.member-role {
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    flex-shrink: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #e67e22;
    width: 80px;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
}

/* Mission Grid */
.mission-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.mission-card {
    flex: 1 1 100%;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mission-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #e67e22;
}

.mission-card p {
    color: #666;
    line-height: 1.7;
}

/* Values Detail */
.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.value-detail {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.value-detail h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #e67e22;
}

.value-detail p {
    color: #666;
    line-height: 1.7;
}

/* Approach */
.approach-points {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-point {
    flex: 1 1 100%;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.approach-point h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.approach-point p {
    color: #666;
    line-height: 1.7;
}

/* Contact */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-block {
    flex: 1 1 100%;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
    color: #2c3e50;
}

.contact-details {
    color: #666;
    line-height: 1.8;
}

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

.contact-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
}

.contact-details a {
    color: #e67e22;
    font-weight: 600;
}

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

.direction-option {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

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

.direction-option p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.direction-option ul {
    list-style-position: inside;
    color: #666;
    line-height: 1.7;
    margin: 1rem 0;
}

.direction-option li {
    margin-bottom: 0.5rem;
}

/* Company Info */
.company-details {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.company-details p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 0;
}

.last-updated {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    text-align: left;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
    color: #2c3e50;
}

.legal-section h4 {
    font-size: 1.125rem;
    margin: 1rem 0 0.5rem;
    color: #2c3e50;
}

.legal-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style-position: inside;
    color: #666;
    line-height: 1.8;
    margin: 1rem 0;
}

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

.cookie-detail {
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

/* Thank You Page */
.thank-you-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #fff;
}

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

.thank-you-hero h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thank-you-hero .lead-text {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.thank-you-hero p {
    color: rgba(255, 255, 255, 0.9);
}

.steps-grid,
.explore-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-card,
.explore-card {
    flex: 1 1 100%;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.step-card h3,
.explore-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step-card p,
.explore-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* CTA Sections */
.cta,
.cta-about,
.cta-services,
.cta-contact {
    background-color: #f5f5f5;
    padding: 4rem 0;
}

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

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #666;
}

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

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

.footer-section {
    flex: 1 1 100%;
}

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

.footer-section p {
    color: #bdc3c7;
    line-height: 1.7;
}

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

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

.footer-links a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    line-height: 1.6;
}

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

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

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

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

.modal-content h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

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

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

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-option p {
    color: #666;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    margin-left: 1.75rem;
    line-height: 1.6;
}

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

/* Tablet Styles */
@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
    }

    .nav-menu.active {
        position: static;
        box-shadow: none;
        padding: 0;
    }

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

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

    section h2 {
        font-size: 2.5rem;
    }

    .highlights-grid .highlight-card,
    .story-blocks .story-block,
    .values-content .value-item,
    .approach-points .approach-point {
        flex: 1 1 calc(50% - 1rem);
    }

    .areas-grid .area-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .team-grid .team-member {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

    .contact-grid .contact-block {
        flex: 1 1 calc(50% - 1rem);
    }

    .steps-grid .step-card,
    .explore-grid .explore-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .footer-content .footer-section {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

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

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

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

    .highlights-grid .highlight-card {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .areas-grid .area-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .services-grid .service-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .team-grid .team-member {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .testimonials-grid .testimonial-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .contact-grid .contact-block {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .steps-grid .step-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

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

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