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

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fdfbf7;
}

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

a {
    color: #6b4423;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #8b5a2b;
}

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

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

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6b4423;
    font-family: 'Georgia', serif;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #6b4423;
    transition: all 0.3s ease;
}

.nav-menu {
    position: fixed;
    top: 68px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 68px);
    background-color: #ffffff;
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transition: left 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-menu li {
    margin-bottom: 1.5rem;
}

.nav-link {
    font-size: 1.125rem;
    color: #2c2c2c;
    padding: 0.5rem 0;
    display: block;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #6b4423;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5ebe0 0%, #e3d5ca 100%);
    padding: 4rem 0;
    text-align: center;
}

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

.hero h1 {
    font-size: 2.5rem;
    color: #6b4423;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.125rem;
    color: #5a5a5a;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #f5ebe0 0%, #e3d5ca 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    color: #6b4423;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.125rem;
    color: #5a5a5a;
}

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

.btn-primary {
    background-color: #6b4423;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #6b4423;
    border: 2px solid #6b4423;
}

.btn-secondary:hover {
    background-color: #6b4423;
    color: #ffffff;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    color: #6b4423;
    margin-bottom: 1rem;
}

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

/* Philosophy Section */
.philosophy {
    background-color: #ffffff;
}

.philosophy-content p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.8;
}

/* Features */
.features {
    background-color: #fdfbf7;
}

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

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

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

.feature-card h3 {
    font-size: 1.375rem;
    color: #6b4423;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #5a5a5a;
    line-height: 1.7;
}

/* Stats */
.stats {
    background: linear-gradient(135deg, #6b4423 0%, #8b5a2b 100%);
    color: #ffffff;
}

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

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

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

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

/* Process */
.process {
    background-color: #ffffff;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    padding: 1.5rem;
    border-left: 4px solid #6b4423;
    background-color: #fdfbf7;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6b4423;
    margin-bottom: 0.75rem;
}

.process-step h3 {
    font-size: 1.25rem;
    color: #2c2c2c;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: #5a5a5a;
}

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

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

.testimonial-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-text p {
    font-style: italic;
    font-size: 1.0625rem;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    color: #6b4423;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #7a7a7a;
    font-size: 0.9375rem;
}

/* Values */
.values {
    background-color: #ffffff;
}

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

.value-item h3 {
    font-size: 1.25rem;
    color: #6b4423;
    margin-bottom: 0.75rem;
}

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

/* Specialty */
.specialty {
    background: linear-gradient(135deg, #f5ebe0 0%, #e3d5ca 100%);
}

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

.specialty-text h2 {
    font-size: 2rem;
    color: #6b4423;
    margin-bottom: 1.5rem;
}

.specialty-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

/* Benefits */
.benefits {
    background-color: #fdfbf7;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit-item h3 {
    font-size: 1.25rem;
    color: #6b4423;
    margin-bottom: 0.75rem;
}

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

/* FAQ */
.faq {
    background-color: #ffffff;
}

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

.faq-item {
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 1rem;
}

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

.faq-icon {
    font-size: 1.5rem;
    color: #6b4423;
    font-weight: 300;
    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-bottom: 1.5rem;
    color: #5a5a5a;
    line-height: 1.7;
}

/* Trust Section */
.trust {
    background-color: #f5ebe0;
}

.trust-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

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

.achievement {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #6b4423;
}

.achievement strong {
    display: block;
    color: #6b4423;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.achievement span {
    color: #5a5a5a;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #6b4423 0%, #8b5a2b 100%);
    text-align: center;
    color: #ffffff;
}

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

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #f5ebe0;
}

.footer-section p {
    font-size: 0.9375rem;
    line-height: 1.7;
    opacity: 0.85;
}

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

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

.footer-links a {
    color: #ffffff;
    opacity: 0.85;
    font-size: 0.9375rem;
    transition: opacity 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.7;
}

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

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

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

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

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

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

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

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

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

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

.modal-header h3 {
    font-size: 1.5rem;
    color: #6b4423;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #2c2c2c;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

.modal-body {
    padding: 1.5rem;
}

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

.cookie-option label {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-right: 0.75rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.cookie-option p {
    font-size: 0.9375rem;
    color: #5a5a5a;
    margin-left: 1.875rem;
    line-height: 1.6;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e8e8e8;
}

/* About Page - Story */
.story {
    background-color: #ffffff;
}

.story-content p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.8;
}

/* Team */
.team {
    background-color: #fdfbf7;
}

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

.team-member {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.member-info h3 {
    font-size: 1.25rem;
    color: #6b4423;
    margin-bottom: 0.25rem;
}

.member-role {
    color: #7a7a7a;
    font-size: 0.9375rem;
}

.team-member p {
    color: #5a5a5a;
    line-height: 1.7;
}

/* Mission */
.mission {
    background-color: #ffffff;
}

.mission-content p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.8;
}

/* Milestones / Timeline */
.milestones {
    background-color: #f5ebe0;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
}

.timeline-year {
    flex-shrink: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #6b4423;
    min-width: 70px;
}

.timeline-content h3 {
    font-size: 1.125rem;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

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

/* Community */
.community {
    background-color: #ffffff;
}

.community-content p {
    margin-bottom: 2rem;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.community-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.community-stat {
    text-align: center;
    padding: 1.5rem;
    background-color: #fdfbf7;
    border-radius: 8px;
}

.community-stat strong {
    display: block;
    font-size: 2rem;
    color: #6b4423;
    margin-bottom: 0.5rem;
}

.community-stat span {
    color: #5a5a5a;
}

/* Sustainability */
.sustainability {
    background-color: #fdfbf7;
}

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

.sustainability-item h3 {
    font-size: 1.25rem;
    color: #6b4423;
    margin-bottom: 0.75rem;
}

.sustainability-item p {
    color: #5a5a5a;
    line-height: 1.7;
}

/* Values Detail */
.values-detail {
    background-color: #ffffff;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-block h3 {
    font-size: 1.25rem;
    color: #6b4423;
    margin-bottom: 0.75rem;
}

.value-block p {
    color: #5a5a5a;
    line-height: 1.7;
}

/* Services Page */
.services-intro {
    background-color: #f5ebe0;
    padding: 2rem 0;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    text-align: center;
}

.services-list {
    background-color: #fdfbf7;
}

.service-item {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

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

.service-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-title h2 {
    font-size: 1.75rem;
    color: #6b4423;
}

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

.service-description p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    padding: 1rem;
    background-color: #fdfbf7;
    border-radius: 4px;
    border-left: 3px solid #6b4423;
}

.feature strong {
    display: block;
    color: #6b4423;
    margin-bottom: 0.25rem;
}

.feature span {
    display: block;
    color: #8b5a2b;
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #5a5a5a;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.service-benefits p {
    background-color: #f5ebe0;
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Service Comparison */
.service-comparison {
    background-color: #ffffff;
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comparison-item {
    padding: 1.5rem;
    background-color: #fdfbf7;
    border-radius: 8px;
}

.comparison-item h3 {
    font-size: 1.125rem;
    color: #6b4423;
    margin-bottom: 0.75rem;
}

.comparison-item p {
    color: #5a5a5a;
    line-height: 1.7;
}

/* Process Section (Services Page) */
.process-section {
    background-color: #f5ebe0;
}

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

.process-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.process-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: #6b4423;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-card h3 {
    font-size: 1.25rem;
    color: #6b4423;
    margin-bottom: 0.75rem;
}

.process-card p {
    color: #5a5a5a;
    line-height: 1.7;
}

/* Contact Page */
.contact-info {
    background-color: #fdfbf7;
}

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

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

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    color: #6b4423;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #5a5a5a;
    line-height: 1.7;
}

.contact-card a {
    color: #6b4423;
    font-weight: 600;
}

.contact-note {
    font-size: 0.875rem;
    color: #7a7a7a;
    margin-top: 0.5rem;
}

/* About Location */
.about-location {
    background-color: #ffffff;
}

.location-content p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.8;
}

/* Directions */
.directions {
    background-color: #f5ebe0;
}

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

.direction-item h3 {
    font-size: 1.25rem;
    color: #6b4423;
    margin-bottom: 0.75rem;
}

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

/* Company Info Section */
.company-info-section {
    background-color: #ffffff;
}

.company-details {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background-color: #fdfbf7;
    border-radius: 4px;
}

.detail-item strong {
    color: #6b4423;
    margin-bottom: 0.25rem;
}

.detail-item span {
    color: #2c2c2c;
}

/* Opening Hours Detail */
.opening-hours-detail {
    background-color: #fdfbf7;
}

.hours-table {
    max-width: 600px;
    margin: 0 auto 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f5ebe0;
}

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

.day {
    font-weight: 600;
    color: #6b4423;
}

.time {
    color: #2c2c2c;
}

.hours-notes {
    max-width: 600px;
    margin: 0 auto;
}

.hours-notes p {
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    color: #5a5a5a;
}

/* Visit Reasons */
.visit-reasons {
    background-color: #ffffff;
}

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

.reason-item h3 {
    font-size: 1.25rem;
    color: #6b4423;
    margin-bottom: 0.75rem;
}

.reason-item p {
    color: #5a5a5a;
    line-height: 1.7;
}

/* Thank You Page */
.thank-you-section {
    background: linear-gradient(135deg, #f5ebe0 0%, #e3d5ca 100%);
    padding: 4rem 0;
    text-align: center;
}

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

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

.thank-you-content h1 {
    font-size: 2.5rem;
    color: #6b4423;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.25rem;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.thank-you-content p {
    font-size: 1.0625rem;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

/* Next Steps */
.next-steps {
    background-color: #ffffff;
}

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

.step-card {
    padding: 2rem;
    background-color: #fdfbf7;
    border-radius: 8px;
}

.step-card h3 {
    font-size: 1.25rem;
    color: #6b4423;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.link-arrow {
    color: #6b4423;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-arrow:hover {
    color: #8b5a2b;
}

/* Contact Alternatives */
.contact-alternatives {
    background-color: #f5ebe0;
}

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

.alternative-item {
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.alternative-item h3 {
    font-size: 1.25rem;
    color: #6b4423;
    margin-bottom: 1rem;
}

.alternative-item p {
    color: #2c2c2c;
    line-height: 1.7;
}

.small-text {
    font-size: 0.9375rem;
    color: #7a7a7a;
    margin-top: 0.5rem;
}

/* Visit Tips */
.visit-tips {
    background-color: #fdfbf7;
}

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

.tip-item h3 {
    font-size: 1.25rem;
    color: #6b4423;
    margin-bottom: 0.75rem;
}

.tip-item p {
    color: #5a5a5a;
    line-height: 1.7;
}

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

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

.legal-text h2 {
    font-size: 1.75rem;
    color: #6b4423;
    margin: 2.5rem 0 1rem;
}

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

.legal-text h3 {
    font-size: 1.375rem;
    color: #6b4423;
    margin: 2rem 0 1rem;
}

.legal-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #2c2c2c;
}

.legal-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-text ul li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #2c2c2c;
}

.legal-text a {
    color: #6b4423;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    margin-bottom: 2rem;
    background-color: #fdfbf7;
    border-radius: 4px;
    overflow: hidden;
}

.cookie-table tr {
    border-bottom: 1px solid #e8e8e8;
}

.cookie-table tr:last-child {
    border-bottom: none;
}

.cookie-table td {
    padding: 0.75rem 1rem;
    vertical-align: top;
}

.cookie-table td:first-child {
    width: 30%;
    color: #6b4423;
}

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

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

    .nav-menu li {
        margin-bottom: 0;
        margin-left: 2rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

    .cookie-buttons {
        flex-wrap: nowrap;
    }

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

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

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

    .community-stat {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .sustainability-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

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

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

    .comparison-item {
        flex: 0 0 calc(50% - 0.75rem);
    }

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

    .process-card {
        flex: 0 0 calc(33.333% - 1.33rem);
    }

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

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

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

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

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

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

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

    .steps-grid {
        flex-direction: row;
    }

    .step-card {
        flex: 0 0 calc(33.333% - 1.33rem);
    }

    .alternatives-grid {
        flex-direction: row;
    }

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

    .tips-content {
        flex-direction: row;
    }

    .tip-item {
        flex: 0 0 calc(33.333% - 1.33rem);
    }

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

    .detail-item strong {
        flex: 0 0 40%;
        margin-bottom: 0;
    }
}

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

    .features-grid {
        flex-wrap: nowrap;
    }

    .feature-card {
        flex: 1;
    }

    .stats-grid {
        flex-wrap: nowrap;
    }

    .stat-item {
        flex: 1;
    }

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

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

    .footer-content {
        flex-wrap: nowrap;
    }

    .footer-section {
        flex: 1;
    }

    .community-stats {
        flex-wrap: nowrap;
    }

    .community-stat {
        flex: 1;
    }
}
