/* 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, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    font-size: 16px;
}

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

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

a:hover {
    color: #8b7355;
}

ul {
    list-style: none;
}

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

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

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

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

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

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    font-weight: 500;
    position: relative;
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #8b7355;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

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

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

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

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

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 40px 20px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

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

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

    .nav-menu a {
        font-size: 18px;
    }
}

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

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

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-text {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

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

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.lead {
    font-size: 20px;
    color: #666;
    margin-top: 15px;
}

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

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

.btn-primary:hover {
    background: #6f5c45;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.3);
}

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

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

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

/* Philosophy Section */
.philosophy {
    background: #fff;
}

.philosophy-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.philosophy-image {
    flex: 1;
}

/* Services Grid */
.services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

/* Values Section */
.values {
    background: #f5f5f5;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #8b7355;
}

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

/* Process Steps */
.process {
    background: #fff;
}

.process-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #e8e8e8;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

/* Testimonials */
.testimonials {
    background: #8b7355;
    color: #fff;
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: #fff;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    opacity: 0.9;
}

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

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Audience/Who We Help */
.who-we-help {
    background: #f5f5f5;
}

.audience-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.audience-card {
    flex: 1;
    min-width: 300px;
    padding: 35px;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #8b7355;
}

.audience-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

/* Insights */
.insights {
    background: #fff;
}

.insights-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.insight-item {
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.insight-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #8b7355;
}

.insight-item p {
    color: #555;
    line-height: 1.8;
}

/* FAQ Section */
.faq {
    background: #f5f5f5;
}

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

.faq-item {
    margin-bottom: 15px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

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

.faq-question:hover {
    background: #f5f5f5;
}

.faq-icon {
    font-size: 24px;
    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 25px 20px;
    color: #666;
    line-height: 1.7;
}

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

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-content a {
    color: #fff;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

.footer-col a:hover {
    color: #8b7355;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: bottom 0.4s ease;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.cookie-buttons {
    display: flex;
    gap: 15px;
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

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

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

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

.modal-header h3 {
    font-size: 24px;
    color: #2c3e50;
}

.modal-close {
    font-size: 30px;
    color: #999;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.modal-body {
    padding: 30px;
}

.cookie-option {
    margin-bottom: 25px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
}

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-option h4 {
    font-size: 18px;
    color: #2c3e50;
}

.cookie-option p {
    color: #666;
    line-height: 1.6;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    text-align: right;
}

/* Service Detail Page */
.service-detail-card {
    margin-bottom: 40px;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.service-detail-header h2 {
    font-size: 28px;
    color: #2c3e50;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #8b7355;
}

.service-detail-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.service-features {
    margin: 25px 0;
    padding-left: 20px;
}

.service-features li {
    list-style: disc;
    margin-bottom: 10px;
    color: #666;
    line-height: 1.7;
}

.service-duration {
    margin-top: 20px;
    font-weight: 600;
    color: #8b7355;
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #8b7355;
}

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

/* Comparison Table */
.comparison-table {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid #eee;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background: #2c3e50;
    color: #fff;
    font-weight: 700;
}

.comparison-cell {
    flex: 1;
    padding: 20px;
}

.comparison-row:not(.comparison-header):hover {
    background: #f9f9f9;
}

/* Contact Page */
.contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 35px;
    background: #f9f9f9;
    border-radius: 8px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-item p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 10px;
}

.contact-note {
    font-size: 14px;
    font-style: italic;
    color: #999;
}

.contact-item a {
    color: #8b7355;
    font-weight: 600;
}

/* About Contact Content */
.about-contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-contact-content p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

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

.direction-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #8b7355;
}

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

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

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

/* Thank You Page */
.thank-you-hero {
    padding: 100px 0;
    text-align: center;
}

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

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

.thank-you-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thank-you-content p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #666;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Next Steps */
.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.step-num {
    font-size: 48px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

/* Meanwhile Links */
.meanwhile-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.link-card {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.link-card h3 {
    margin-bottom: 10px;
}

.link-card h3 a {
    color: #8b7355;
    font-size: 20px;
}

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

/* Legal Content */
.legal-content {
    background: #fff;
}

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

.legal-text h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #8b7355;
}

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

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

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

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

/* Story/Mission */
.story-content,
.difference-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content p,
.difference-content p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.mission-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.mission-text p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.mission-image {
    flex: 1;
}

/* Approach Grid */
.approach-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.approach-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #8b7355;
}

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

/* Team Section */
.team-bio {
    max-width: 800px;
    margin: 0 auto;
}

.team-bio h3 {
    font-size: 28px;
    margin-bottom: 5px;
    color: #2c3e50;
}

.team-role {
    font-size: 18px;
    color: #8b7355;
    margin-bottom: 20px;
}

.team-bio p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

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

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

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

.timeline-year {
    font-size: 32px;
    font-weight: 700;
    color: #8b7355;
    min-width: 100px;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

/* Principles List */
.principles-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.principle-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.principle-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #8b7355;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 38px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .philosophy-content,
    .mission-content {
        flex-direction: column;
    }

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

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

    .comparison-cell {
        border-bottom: 1px solid #eee;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-text {
        font-size: 18px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .service-card,
    .value-item,
    .step,
    .testimonial {
        min-width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-buttons .btn {
        width: 100%;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .thank-you-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .service-detail-card {
        padding: 25px;
    }
}