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

:root {
    --primary-color: #8B6F47;
    --primary-dark: #6D5638;
    --primary-light: #A0826D;
    --accent-color: #D4A574;
    --text-color: #2C2416;
    --text-light: #5A5446;
    --bg-light: #FAF8F5;
    --bg-cream: #F5F1EB;
    --white: #FFFFFF;
    --border-color: #E0D5C7;
    --shadow: rgba(0, 0, 0, 0.1);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

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

/* Header */
.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px var(--shadow);
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
}

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

.nav a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    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: var(--primary-dark);
    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(6px, -6px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

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

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    padding: 5rem 0;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

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

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

.section-intro.centered {
    text-align: center;
}

.intro-text {
    font-size: 1.125rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Values Grid */
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.value-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 1rem;
}

/* Featured Work */
.featured-work {
    background-color: var(--bg-cream);
}

.work-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.showcase-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow);
}

.showcase-visual {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.showcase-item h3 {
    margin-bottom: 0.75rem;
}

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

.process-step {
    flex: 1 1 calc(25% - 2rem);
    min-width: 240px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.process-step h3 {
    margin-bottom: 0.75rem;
}

/* Testimonials */
.testimonials {
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    margin-bottom: 1.5rem;
}

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

.testimonial-author strong {
    display: block;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

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

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

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

/* Materials Section */
.materials-content {
    margin-top: 2rem;
}

.materials-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.material-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.material-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* Philosophy Section */
.philosophy-section {
    background-color: var(--bg-cream);
}

.philosophy-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.philosophy-text {
    flex: 1 1 60%;
    min-width: 300px;
}

.philosophy-highlight {
    flex: 1 1 35%;
    min-width: 250px;
    text-align: center;
}

.highlight-text {
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--text-light);
}

/* FAQ Section */
.faq-section,
.faq-contact,
.faq-services {
    background-color: var(--bg-light);
}

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

.faq-item {
    background-color: var(--white);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px var(--shadow);
}

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

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.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 1.5rem 1.5rem;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.cta-section .btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
}

.cta-section .btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

/* Footer */
.footer {
    background-color: var(--text-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 1rem;
}

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

.footer-section {
    flex: 1 1 calc(25% - 2rem);
    min-width: 200px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a:hover {
    color: var(--white);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-color);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px var(--shadow);
    z-index: 1000;
    display: none;
}

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

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

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

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

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    padding: 20px;
}

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

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

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

.modal-header h2 {
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

.modal-close:hover {
    color: var(--text-color);
}

.modal-body {
    padding: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    gap: 1rem;
    cursor: pointer;
    align-items: flex-start;
}

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

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

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

/* Story Section */
.story-section {
    max-width: 900px;
    margin: 0 auto;
}

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

/* Timeline */
.timeline {
    position: relative;
    margin-top: 3rem;
    padding-left: 2rem;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-left: 2px solid var(--border-color);
}

.timeline-item:last-child {
    border-left-color: transparent;
}

.timeline-year {
    position: absolute;
    left: -2rem;
    width: 4rem;
    height: 4rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.timeline-content {
    padding-left: 3rem;
}

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

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.member-icon {
    margin: 0 auto 1.5rem;
    width: 80px;
    height: 80px;
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

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

/* Philosophy Detail */
.philosophy-detail {
    background-color: var(--bg-cream);
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.philosophy-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
}

.philosophy-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Workshop Section */
.workshop-content {
    margin-top: 2rem;
}

.workshop-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-block {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.feature-block h3 {
    margin-bottom: 1rem;
}

.feature-block ul {
    list-style-position: inside;
    color: var(--text-light);
}

.feature-block li {
    margin-bottom: 0.5rem;
}

/* Values Detail */
.reasons-list {
    margin-top: 3rem;
}

.reason-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    align-items: flex-start;
}

.reason-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    flex-shrink: 0;
}

.reason-content h3 {
    margin-bottom: 0.75rem;
}

/* Services Page */
.services-intro {
    background-color: var(--bg-light);
    padding: 2rem 0;
}

.services-list {
    margin-top: 2rem;
}

.service-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

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

.service-header h2 {
    margin: 0;
}

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

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

.service-details {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.service-details h3 {
    margin-bottom: 1rem;
}

.service-details ul {
    list-style-position: inside;
    color: var(--text-light);
}

.service-details li {
    margin-bottom: 0.5rem;
}

.service-examples {
    margin-top: 2rem;
}

.example {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    gap: 1rem;
    flex-wrap: wrap;
}

.example strong {
    flex: 1 1 40%;
    min-width: 150px;
}

.example span {
    color: var(--text-light);
    flex: 1 1 40%;
    min-width: 150px;
}

.example-price {
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

/* Service Benefits */
.service-benefits {
    background-color: var(--bg-cream);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    text-align: center;
    padding: 2rem;
}

.benefit-item svg {
    margin: 0 auto 1rem;
    color: var(--primary-color);
}

.benefit-item h3 {
    margin-bottom: 0.75rem;
}

/* Process Timeline */
.process-timeline {
    background-color: var(--bg-light);
}

.timeline-steps {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.timeline-step {
    flex: 1 1 calc(20% - 2rem);
    min-width: 220px;
}

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

.step-content h3 {
    margin-bottom: 0.75rem;
}

/* Contact Page */
.contact-main {
    background-color: var(--bg-light);
}

.contact-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-info {
    flex: 1 1 45%;
    min-width: 300px;
}

.contact-directions {
    flex: 1 1 45%;
    min-width: 300px;
}

.contact-block {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-block h2 {
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-item svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

.info-item h3 {
    margin-bottom: 0.5rem;
}

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

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

.directions-content h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.directions-content h3:first-child {
    margin-top: 0;
}

/* Visit Info */
.visit-info {
    background-color: var(--bg-cream);
}

.visit-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.visit-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
}

.visit-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact Description */
.email-info {
    max-width: 800px;
    margin: 2rem auto 0;
}

.email-tips {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.email-tips h3 {
    margin-bottom: 1rem;
}

.email-tips ul {
    list-style-position: inside;
    margin-bottom: 1rem;
}

.email-tips li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.email-cta {
    text-align: center;
}

/* Map Placeholder */
.map-placeholder {
    background-color: var(--bg-light);
}

.map-description {
    margin-top: 2rem;
}

/* Thank You Page */
.thank-you-hero {
    background-color: var(--bg-cream);
    padding: 5rem 0;
}

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

.thank-you-icon {
    margin: 0 auto 2rem;
}

.thank-you-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

.next-steps {
    background-color: var(--bg-light);
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 4px var(--shadow);
}

.step-card .step-icon {
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    margin-bottom: 1rem;
}

.explore-more {
    text-align: center;
}

.section-intro {
    margin-bottom: 2rem;
}

.links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.link-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-card:hover {
    background-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 4px 12px var(--shadow);
}

.link-card:hover h3,
.link-card:hover p {
    color: var(--white);
}

.link-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.link-card p {
    color: var(--text-light);
    margin: 0;
}

.contact-reminder {
    background-color: var(--bg-cream);
}

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

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    text-align: left;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

.option {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.option strong {
    min-width: 140px;
}

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text {
    line-height: 1.8;
}

.legal-text .intro {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.legal-text h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-text h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.legal-text ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

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

#openCookieSettings {
    margin-top: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: 2px 0 10px var(--shadow);
        transition: left 0.3s ease;
        z-index: 200;
        padding: 5rem 0 2rem;
    }

    .nav.active {
        left: 0;
    }

    .nav ul {
        flex-direction: column;
        gap: 0;
    }

    .nav li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: none;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 201;
    }

    .hero h1 {
        font-size: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .value-card,
    .showcase-item,
    .testimonial-card,
    .team-member,
    .benefit-item {
        flex: 1 1 100%;
    }

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

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

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

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-buttons .btn {
        flex: 1;
    }

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

    .reason-item {
        flex-direction: column;
        gap: 1rem;
    }

    .reason-number {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-section {
        flex: 1 1 100%;
    }
}

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

    section {
        padding: 3rem 0;
    }

    .hero {
        padding: 3rem 0;
    }

    .btn {
        width: 100%;
    }

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

    .process-step,
    .timeline-step {
        flex: 1 1 100%;
    }
}
