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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

/* Header and Navigation */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px 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 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f8d;
}

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

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

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.nav-menu li a {
    display: block;
    padding: 12px 0;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c5f8d 0%, #4a7ba7 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2c5f8d 0%, #4a7ba7 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #2c5f8d;
    border: 2px solid #2c5f8d;
}

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

.btn-text {
    color: #2c5f8d;
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-text:hover {
    color: #ff6b35;
}

/* Sections */
section {
    padding: 60px 0;
}

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

section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

/* Intro Section */
.intro-section {
    background-color: #f8f9fa;
}

.intro-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.intro-text p {
    margin-bottom: 20px;
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5f8d;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    margin-top: 8px;
}

/* Philosophy Section */
.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.philosophy-card {
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.philosophy-icon {
    width: 60px;
    height: 60px;
    color: #2c5f8d;
    margin-bottom: 20px;
}

.philosophy-icon svg {
    width: 100%;
    height: 100%;
}

/* Services Preview */
.services-preview {
    background-color: #f8f9fa;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-card h3 {
    color: #2c5f8d;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
}

/* Service Detail Cards */
.service-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-detail-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.service-header h3 {
    margin: 0;
    color: #2c5f8d;
}

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

.service-duration {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.service-includes {
    margin-top: 20px;
    padding-left: 20px;
}

.service-includes li {
    list-style: disc;
    margin-bottom: 8px;
    color: #666;
}

/* Testimonials */
.testimonials {
    background-color: #f8f9fa;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #2c5f8d;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #2c5f8d;
}

/* Process Section */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
}

/* Insights Section */
.insights-section {
    background-color: #f8f9fa;
}

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

.insights-content p {
    margin-bottom: 20px;
}

.insights-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c5f8d;
}

/* Benefits Section */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item h3 {
    color: #2c5f8d;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #555;
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    transition: background-color 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 0 20px 20px;
    color: #555;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c5f8d 0%, #4a7ba7 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 20px;
}

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

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    color: #ccc;
    line-height: 1.8;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ff6b35;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
}

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

.cookie-buttons {
    display: flex;
    gap: 15px;
    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: 10001;
    padding: 20px;
}

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

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    color: #333;
}

.modal-content h3 {
    margin-bottom: 20px;
    color: #2c5f8d;
}

.cookie-option {
    margin-bottom: 20px;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-option input[type="checkbox"] {
    margin-top: 3px;
}

.cookie-option p {
    margin-top: 5px;
    margin-left: 30px;
    color: #666;
    font-size: 0.9rem;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Story Section */
.story-section {
    background-color: #f8f9fa;
}

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

.story-content p {
    margin-bottom: 20px;
}

/* Timeline */
.milestones-section {
    padding: 60px 0;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.timeline-content h3 {
    color: #2c5f8d;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #555;
}

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

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.value-card h3 {
    color: #2c5f8d;
    margin-bottom: 15px;
}

.value-card p {
    color: #555;
}

/* Team Section */
.team-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-member {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.team-member h3 {
    color: #2c5f8d;
    margin-bottom: 5px;
}

.role {
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.team-member p {
    color: #555;
}

/* Approach Section */
.approach-section {
    background-color: #f8f9fa;
}

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

.approach-content h3 {
    color: #2c5f8d;
    margin-top: 30px;
    margin-bottom: 15px;
}

.approach-content p {
    margin-bottom: 20px;
    color: #555;
}

/* Commitment Section */
.commitment-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.commitment-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.commitment-item h3 {
    color: #2c5f8d;
    margin-bottom: 15px;
}

.commitment-item p {
    color: #555;
}

/* Private Tours */
.private-tours {
    background-color: #f8f9fa;
}

.private-info {
    max-width: 900px;
    margin: 0 auto;
}

.private-info > p {
    text-align: center;
    margin-bottom: 40px;
}

.private-pricing {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pricing-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.pricing-item h3 {
    color: #2c5f8d;
    margin-bottom: 15px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    margin: 15px 0;
    display: block;
}

.pricing-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Benefits Comparison */
.benefits-comparison {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-col {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.benefit-col h3 {
    color: #2c5f8d;
    margin-bottom: 12px;
}

.benefit-col p {
    color: #555;
}

/* Booking Process */
.booking-process {
    background-color: #f8f9fa;
}

.process-simple {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.process-step h3 {
    color: #2c5f8d;
}

.process-step p {
    color: #555;
}

/* Contact Sections */
.contact-info {
    padding: 60px 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-block h2 {
    text-align: left;
    margin-bottom: 30px;
}

.contact-block h3 {
    color: #2c5f8d;
    margin-top: 25px;
    margin-bottom: 12px;
}

.contact-block p {
    margin-bottom: 15px;
    color: #555;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail-item h3 {
    color: #2c5f8d;
    margin-bottom: 10px;
}

.detail-item a {
    color: #ff6b35;
    text-decoration: underline;
}

.note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* About Office */
.about-office {
    background-color: #f8f9fa;
}

.about-office > .container > p {
    text-align: center;
    margin-bottom: 40px;
}

.office-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.feature h3 {
    color: #2c5f8d;
    margin-bottom: 12px;
}

.feature p {
    color: #555;
}

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

.company-data {
    max-width: 600px;
    margin: 0 auto;
}

.company-data p {
    margin-bottom: 10px;
    color: #555;
}

/* Thank You Section */
.thankyou-section {
    padding: 100px 0;
    text-align: center;
}

.thankyou-content {
    max-width: 700px;
    margin: 0 auto;
}

.thankyou-content h1 {
    color: #2c5f8d;
    margin-bottom: 20px;
}

.thankyou-content .lead {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ff6b35;
}

.thankyou-content p {
    margin-bottom: 30px;
    color: #555;
}

.thankyou-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Content */
.legal-content {
    padding: 60px 0;
}

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

.legal-text h2 {
    text-align: left;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c5f8d;
}

.legal-text h3 {
    text-align: left;
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.legal-text p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.legal-text ul {
    margin: 15px 0 15px 30px;
}

.legal-text ul li {
    list-style: disc;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.8;
}

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

.legal-text strong {
    color: #333;
}

/* Cookies Table */
.cookies-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.cookies-table thead {
    background-color: #2c5f8d;
    color: #fff;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookies-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

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

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

.services-list {
    padding: 60px 0;
}

/* FAQ Services */
.faq-services {
    background-color: #f8f9fa;
}

/* FAQ Contact */
.faq-contact {
    background-color: #f8f9fa;
}

/* Lead Text */
.lead {
    font-size: 1.2rem;
}

/* Services Intro */
.services-intro .container {
    text-align: center;
}

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

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        max-width: none;
        padding: 0;
        box-shadow: none;
        flex-direction: row;
        gap: 30px;
        background-color: transparent;
    }

    .nav-menu li a {
        padding: 0;
        font-size: 1rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .intro-grid {
        flex-direction: row;
        align-items: center;
    }

    .intro-text {
        flex: 1;
    }

    .intro-stats {
        flex: 0 0 300px;
    }

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

    .philosophy-card {
        flex: 1 1 calc(33.333% - 20px);
        min-width: 250px;
    }

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

    .service-card {
        flex: 1 1 calc(33.333% - 20px);
        min-width: 280px;
    }

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

    .testimonial {
        flex: 1 1 calc(33.333% - 20px);
        min-width: 280px;
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step {
        flex: 1 1 calc(50% - 15px);
    }

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

    .benefit-item {
        flex: 1 1 calc(50% - 15px);
    }

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

    .footer-col {
        flex: 1 1 calc(33.333% - 20px);
    }

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

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

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

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

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

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

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

    .private-pricing {
        flex-direction: row;
    }

    .pricing-item {
        flex: 1;
    }

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

    .benefit-col {
        flex: 1 1 calc(50% - 15px);
    }

    .process-simple {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1 1 calc(50% - 15px);
    }

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

    .contact-block {
        flex: 1;
    }

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

    .feature {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 4rem;
    }

    section h2 {
        font-size: 2.5rem;
    }

    .philosophy-grid {
        flex-wrap: nowrap;
    }

    .philosophy-card {
        flex: 1;
    }

    .stat-item {
        align-items: flex-start;
        text-align: left;
    }

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

    .value-card {
        flex: 1 1 calc(33.333% - 20px);
    }

    .process-simple {
        flex-wrap: nowrap;
    }

    .process-step {
        flex: 1;
    }
}