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

:root {
    --primary-color: #d4a574;
    --primary-dark: #b8895f;
    --secondary-color: #f5e6d3;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --bg-light: #faf8f5;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

ul {
    list-style: none;
}

/* Header and Navigation */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logo img {
    height: 40px;
}

.mobile-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

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

.nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 70px);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.nav-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background-color: var(--secondary-color);
    color: var(--primary-dark);
}

/* Hero Section */
.hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--bg-light));
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-visual img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Page Hero */
.page-hero {
    padding: 3rem 0 2rem;
    background: var(--secondary-color);
    text-align: center;
}

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

.lead {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

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

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.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: 0.5rem 1rem;
    font-size: 0.875rem;
}

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

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

section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.section-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
}

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

.philosophy-item {
    text-align: center;
    padding: 1.5rem;
}

.philosophy-item img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.philosophy-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

/* Featured Service */
.featured-service {
    background: var(--bg-light);
}

.featured-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.featured-text .label {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.featured-text h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.featured-text p {
    margin-bottom: 1rem;
}

.featured-visual img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

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

.benefit-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.benefit-icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Stats */
.stats {
    background: var(--primary-color);
    color: var(--white);
}

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

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

.testimonial-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial-content {
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
}

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

/* Knowledge Section */
.knowledge-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.knowledge-item {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.knowledge-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

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

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

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

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 20px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-icon::after {
    width: 2px;
    height: 20px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
}

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

.faq-answer p {
    padding: 0 0 1.25rem;
    color: var(--text-light);
}

/* Story Section */
.story {
    background: var(--bg-light);
}

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

.content-block h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.content-block p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

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

.value-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.value-card img {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

/* Team */
.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--text-light);
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    text-align: center;
}

.member-visual {
    margin-bottom: 1rem;
}

.member-visual img {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

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

.team-member p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Approach */
.approach {
    background: var(--bg-light);
}

.approach-content h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.approach-content > p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    color: var(--text-light);
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.approach-item {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.approach-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

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

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.timeline-year {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

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

/* Trust Grid */
.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
}

.trust-item img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.trust-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

.service-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.service-header h3 {
    font-size: 1.25rem;
}

.service-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.benefit-block {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.benefit-block img {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.benefit-block h3 {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.benefit-block ul {
    list-style: none;
}

.benefit-block ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.benefit-block ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

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

.contact-block {
    text-align: center;
    padding: 1.5rem;
}

.contact-block img {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.contact-block h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-block a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.about-location,
.contact-description,
.company-info {
    background: var(--bg-light);
}

.location-content,
.description-grid {
    max-width: 800px;
    margin: 0 auto;
}

.location-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.description-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.description-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Directions */
.directions-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.direction-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.direction-card img {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.direction-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.direction-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Company Details */
.company-details {
    max-width: 600px;
    margin: 2rem auto 0;
}

.company-details p {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.company-details p:last-child {
    border-bottom: none;
}

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

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

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

.thank-you-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

/* Legal Content */
.legal-content {
    padding: 2rem 0 4rem;
}

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

.legal-text h2 {
    text-align: left;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-text p,
.legal-text ul {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-text ul {
    list-style: disc;
    padding-left: 2rem;
}

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

/* Cookies Table */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    overflow-x: auto;
    display: block;
}

.cookies-table thead {
    background: var(--secondary-color);
}

.cookies-table th,
.cookies-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    font-weight: 600;
}

/* CTA Section */
.cta {
    background: var(--secondary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

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

.footer-col ul li a:hover {
    color: var(--primary-color);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--white);
    padding: 1.25rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    margin: 0;
    font-size: 0.9375rem;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.show {
    display: flex;
}

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

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body {
    padding: 1.5rem;
}

.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;
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: normal;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

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

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

    .hero .container {
        flex-direction: row;
        align-items: center;
    }

    .hero-content {
        flex: 1;
    }

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

    .hero-visual {
        flex: 1;
    }

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

    .philosophy-grid,
    .benefits-list,
    .testimonials-grid,
    .knowledge-grid,
    .values-grid,
    .team-grid,
    .services-grid,
    .contact-grid,
    .directions-grid,
    .description-grid,
    .trust-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-item,
    .benefit-card,
    .testimonial-card,
    .knowledge-item,
    .value-card,
    .team-member,
    .direction-card,
    .description-item,
    .trust-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

    .stats-grid {
        flex-direction: row;
        justify-content: space-around;
    }

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

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

    .featured-content {
        flex-direction: row;
        align-items: center;
    }

    .featured-text {
        flex: 1;
    }

    .featured-visual {
        flex: 1;
    }

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

    .benefit-block {
        flex: 1;
    }

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

    .footer-col {
        flex: 1;
    }

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

    .cookie-buttons {
        margin-left: auto;
    }

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

    .cookies-table {
        display: table;
    }
}

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

    section h2 {
        font-size: 2rem;
    }

    .philosophy-item,
    .value-card,
    .trust-item {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

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

    .step {
        flex: 1;
    }
}