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

:root {
    --primary-color: #8B7355;
    --secondary-color: #5A4A3A;
    --accent-color: #A68968;
    --text-color: #2C2C2C;
    --light-bg: #F8F6F3;
    --white: #FFFFFF;
    --border-color: #E0DDD8;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 16px;
}

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

.header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

.hero {
    background: var(--light-bg);
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text {
    font-size: 20px;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-hero {
    background: var(--light-bg);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

section {
    padding: 60px 0;
}

h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-color);
    max-width: 700px;
    margin: -10px auto 40px;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

.philosophy-section {
    background: var(--white);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 30px;
}

.value-icon {
    margin-bottom: 20px;
}

.services-preview {
    background: var(--light-bg);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    flex: 1;
    min-width: 260px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-card h3 {
    margin-bottom: 15px;
}

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

.price-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
}

.process-section {
    background: var(--white);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

.process-step {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 8px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
    opacity: 0.6;
}

.stats-section {
    background: var(--primary-color);
    color: var(--white);
}

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

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

.stat-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
}

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

.testimonials-section {
    background: var(--light-bg);
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

.expertise-section {
    background: var(--white);
}

.expertise-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.expertise-text {
    flex: 2;
    min-width: 300px;
}

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

.expertise-highlight {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.benefits-section {
    background: var(--light-bg);
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    flex: 1;
    min-width: 280px;
    padding: 25px;
    background: var(--white);
    border-radius: 8px;
}

.faq-section {
    background: var(--white);
}

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

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-color);
    transition: transform 0.3s;
}

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

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

.faq-answer p {
    padding: 0 0 20px 0;
    line-height: 1.7;
}

.cta-section {
    background: var(--light-bg);
    text-align: center;
}

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

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 50px 0 20px;
}

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

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

.footer-section h4 {
    color: var(--white);
    margin-bottom: 15px;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--primary-color);
    padding: 20px;
    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-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

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

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-content h3 {
    margin-bottom: 20px;
}

.cookie-option {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

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

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

.cookie-option p {
    margin-top: 8px;
    font-size: 14px;
    color: #666;
}

.modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

.story-section,
.team-section,
.philosophy-detailed,
.milestones-section,
.values-detailed,
.workshop-section,
.approach-section {
    background: var(--white);
}

.story-section:nth-child(even),
.team-section:nth-child(even),
.philosophy-detailed:nth-child(even),
.milestones-section:nth-child(even),
.values-detailed:nth-child(even),
.workshop-section:nth-child(even),
.approach-section:nth-child(even) {
    background: var(--light-bg);
}

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 8px;
}

.member-icon {
    margin-bottom: 20px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.philosophy-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.philosophy-block {
    flex: 1;
    min-width: 300px;
}

.philosophy-block p {
    margin-bottom: 15px;
}

.timeline {
    max-width: 900px;
    margin: 40px auto 0;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

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

.timeline-year {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 100px;
}

.timeline-content h3 {
    margin-bottom: 10px;
}

.values-list {
    list-style: none;
    margin-top: 30px;
}

.values-list li {
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
}

.values-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
}

.workshop-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 8px;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

.approach-step {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.services-detailed .service-item-detailed {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 2px solid var(--border-color);
}

.services-detailed .service-item-detailed:last-child {
    border-bottom: none;
}

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

.service-tagline {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 500;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-description {
    line-height: 1.8;
}

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

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

.service-description li {
    margin-bottom: 10px;
}

.price-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 20px;
}

.service-benefits,
.process-overview,
.faq-services {
    background: var(--light-bg);
}

.benefits-grid-alt {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.benefit-alt {
    flex: 1;
    min-width: 260px;
    padding: 25px;
    background: var(--white);
    border-radius: 8px;
}

.process-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

.process-box {
    flex: 1;
    min-width: 220px;
    padding: 25px;
    background: var(--white);
    border-radius: 8px;
    text-align: center;
}

.box-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.contact-main {
    background: var(--white);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info,
.contact-description {
    flex: 1;
    min-width: 300px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.note {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.info-box {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.info-box h3 {
    margin-bottom: 15px;
}

.info-box ul {
    list-style: none;
    padding-left: 0;
}

.info-box li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.info-box li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
}

.directions-section,
.visit-info,
.company-info,
.contact-faq {
    background: var(--light-bg);
}

.directions-section:nth-child(even),
.visit-info:nth-child(even),
.company-info:nth-child(even),
.contact-faq:nth-child(even) {
    background: var(--white);
}

.directions-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.direction-block {
    flex: 1;
    min-width: 280px;
}

.direction-block h3 {
    margin-bottom: 15px;
}

.direction-block p {
    margin-bottom: 15px;
}

.visit-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.visit-item {
    flex: 1;
    min-width: 280px;
}

.company-details {
    max-width: 700px;
    margin: 30px auto 0;
}

.company-details p {
    margin-bottom: 12px;
}

.thank-you-section {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-content h1 {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.thank-you-text {
    font-size: 18px;
    margin-bottom: 15px;
}

.thank-you-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.legal-content {
    background: var(--white);
}

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

.legal-text h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

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

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

.legal-text li {
    margin-bottom: 10px;
}

.legal-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-120%);
        transition: transform 0.3s;
        gap: 15px;
    }

    .nav.active {
        transform: translateY(0);
    }

    .menu-toggle {
        display: flex;
    }

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

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

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

    .hero-content h1 {
        font-size: 36px;
    }

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

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

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }

    .stats-grid {
        gap: 30px;
    }

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

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

    .timeline-year {
        min-width: auto;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: flex-end;
    }

    .service-header {
        flex-direction: column;
    }

    .service-price {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 50px 0;
    }

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

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

    section {
        padding: 40px 0;
    }

    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }

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