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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #2c1810;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: #5a3a1a;
}

ul {
    list-style-position: inside;
}

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

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

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

.main-nav {
    display: none;
}

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

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

.nav-list a:hover {
    color: #8b5a2b;
}

/* 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 {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #8b5a2b;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile navigation */
.main-nav.mobile-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.main-nav.mobile-open .nav-list {
    flex-direction: column;
    gap: 0;
}

.main-nav.mobile-open .nav-list li {
    border-bottom: 1px solid #eee;
}

.main-nav.mobile-open .nav-list a {
    display: block;
    padding: 1rem 20px;
}

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

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

.btn-primary:hover {
    background-color: #5a3a1a;
    color: #fff;
}

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

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

/* Hero section */
.hero {
    background: linear-gradient(135deg, #8b5a2b 0%, #d4915d 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.page-subtitle {
    font-size: 1.15rem;
    color: #666;
    margin-top: 0.5rem;
}

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

.section-intro {
    font-size: 1.1rem;
    color: #555;
    max-width: 900px;
    margin: 0 auto 2rem;
}

/* Content sections */
.text-content {
    max-width: 800px;
    margin: 0 auto;
}

.text-content h2 {
    margin-top: 2rem;
}

.text-content h3 {
    margin-top: 1.5rem;
}

.text-content ul {
    margin-bottom: 1rem;
    margin-left: 1.5rem;
}

.text-content ul li {
    margin-bottom: 0.5rem;
}

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

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

.philosophy-icon {
    margin-bottom: 1rem;
}

.philosophy-item h3 {
    color: #8b5a2b;
    margin-bottom: 0.75rem;
}

/* Products showcase */
.products-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.product-feature {
    text-align: center;
}

.product-visual {
    margin-bottom: 1.5rem;
}

.product-feature h3 {
    color: #8b5a2b;
    margin-bottom: 1rem;
}

/* Statistics */
.statistics {
    background-color: #8b5a2b;
    color: #fff;
}

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

.stat-item {
    padding: 1rem;
}

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

.stat-label {
    font-size: 1.1rem;
}

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

.step {
    background-color: #f5ebe0;
    padding: 2rem;
    border-radius: 8px;
    position: relative;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #8b5a2b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    color: #8b5a2b;
}

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

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

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

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

/* Benefits */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    background-color: #f5ebe0;
    padding: 2rem;
    border-radius: 8px;
}

.benefit-item h3 {
    color: #8b5a2b;
    margin-bottom: 0.75rem;
}

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

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

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

.faq-icon {
    font-size: 1.5rem;
    color: #8b5a2b;
    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;
    padding-bottom: 1.5rem;
}

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

/* CTA Section */
.cta-section {
    background-color: #d4915d;
    color: #fff;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

/* Timeline */
.timeline-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b5a2b;
    min-width: 80px;
}

.timeline-content {
    flex: 1;
    background-color: #f5ebe0;
    padding: 1.5rem;
    border-radius: 8px;
}

.timeline-content h3 {
    color: #8b5a2b;
    margin-bottom: 0.5rem;
}

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

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

.value-card h3 {
    color: #8b5a2b;
    margin-bottom: 1rem;
}

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

.team-member {
    background-color: #f5ebe0;
    padding: 2rem;
    border-radius: 8px;
}

.team-member h3 {
    color: #8b5a2b;
    margin-bottom: 0.25rem;
}

.role {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

/* Achievements */
.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.achievement-item {
    background-color: #f5ebe0;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #d4915d;
}

.achievement-item h3 {
    color: #8b5a2b;
    margin-bottom: 0.75rem;
}

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

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
}

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

.service-card h3 {
    color: #8b5a2b;
    margin-bottom: 1rem;
}

.service-description {
    color: #555;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8b5a2b;
}

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

.benefit-box {
    background-color: #f5ebe0;
    padding: 2rem;
    border-radius: 8px;
}

.benefit-box h3 {
    color: #8b5a2b;
    margin-bottom: 1rem;
}

/* Comparison table */
.comparison-table {
    margin-top: 2rem;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

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

.comparison-row:not(:last-child) {
    border-bottom: 1px solid #ddd;
}

.comparison-cell {
    padding: 1.5rem;
}

.comparison-cell:first-child {
    background-color: #f5ebe0;
    font-weight: 600;
}

.comparison-cell h3 {
    color: #8b5a2b;
    margin-bottom: 0;
}

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

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

.contact-card h2 {
    color: #8b5a2b;
    margin-bottom: 1.5rem;
}

.contact-detail {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.contact-detail strong {
    color: #8b5a2b;
}

/* Company info */
.company-details {
    background-color: #f5ebe0;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

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

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

.info-box {
    background-color: #f5ebe0;
    padding: 2rem;
    border-radius: 8px;
}

.info-box h3 {
    color: #8b5a2b;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

.footer-section h3 {
    color: #d4915d;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: #ccc;
}

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

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

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

/* 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: 3000;
    padding: 20px;
}

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

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

.modal-content h2 {
    color: #8b5a2b;
    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;
}

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

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

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

/* Desktop styles */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .main-nav {
        display: block;
    }

    .hero {
        padding: 6rem 0;
    }

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

    .philosophy-item {
        flex: 0 0 calc(33.333% - 1.5rem);
    }

    .products-showcase {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .product-feature {
        flex: 0 0 calc(33.333% - 2rem);
    }

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

    .stat-item {
        flex: 0 0 calc(25% - 1.5rem);
    }

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

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

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

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

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

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

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

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

    .team-members {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

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

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

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

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

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

    .comparison-cell {
        flex: 1;
    }

    .comparison-row:first-child .comparison-cell {
        font-weight: 700;
        background-color: #8b5a2b;
        color: #fff;
    }

    .comparison-row:first-child h3 {
        color: #fff;
    }

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

    .contact-card {
        flex: 0 0 calc(33.333% - 1.5rem);
    }

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

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

    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }

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

    .footer-section {
        flex: 1;
    }

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

    .cookie-buttons {
        flex-direction: row;
    }

    .modal-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 5rem 0;
    }

    .hero {
        padding: 8rem 0;
    }
}