/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

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

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

.navbar {
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: 0.5px;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c2c2c;
    transition: all 0.3s ease;
}

.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(6px, -6px);
}

.nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
}

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

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

.nav-link {
    font-size: 1.1rem;
    color: #2c2c2c;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #8b7355;
}

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

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

.btn-primary:hover {
    background-color: #6f5b43;
}

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

.btn-secondary:hover {
    background-color: #8b7355;
    color: #ffffff;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f1ed 0%, #e8dfd6 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    line-height: 1.3;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #5a5a5a;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Hero */
.page-hero {
    background-color: #f5f1ed;
    padding: 60px 0 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.subtitle {
    font-size: 1.1rem;
    color: #6a6a6a;
}

/* Sections */
section {
    padding: 60px 0;
}

section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    text-align: center;
}

section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

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

.section-intro p {
    font-size: 1.1rem;
    color: #5a5a5a;
}

/* Philosophy Grid */
.philosophy {
    background-color: #fafafa;
}

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

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

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

.icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.philosophy-item h3 {
    margin-bottom: 1rem;
}

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

/* Featured Collection */
.featured-collection {
    background-color: #f5f1ed;
}

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

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

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

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

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

.benefit-card {
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #8b7355;
}

.benefit-card h3 {
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

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

/* Testimonials */
.testimonials {
    background-color: #2c2c2c;
    color: #ffffff;
}

.testimonials h2 {
    color: #ffffff;
}

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

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

.quote {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.author {
    font-weight: 500;
    color: #c9b89a;
}

/* Statistics */
.stats {
    background-color: #8b7355;
    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.95;
}

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

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

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e8dfd6;
}

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

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

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

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

.faq-item {
    background-color: #ffffff;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 500;
    color: #2c2c2c;
    background-color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f5f1ed;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #8b7355;
    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-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #8b7355 0%, #6f5b43 100%);
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

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

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 50px 0 20px;
}

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

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

.footer-section p {
    color: #b8b8b8;
    line-height: 1.7;
}

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

.footer-section a {
    color: #b8b8b8;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

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

/* 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: 999;
    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 {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

.modal.show {
    display: flex;
}

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

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

.cookie-options {
    margin-bottom: 2rem;
}

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

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-weight: 500;
}

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

.cookie-option p {
    font-size: 0.9rem;
    color: #6a6a6a;
    margin-top: 0.3rem;
    margin-left: 1.8rem;
}

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

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

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

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

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

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

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #8b7355;
    margin-top: 1rem;
}

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

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

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

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-card h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: center;
}

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

.contact-card a {
    color: #8b7355;
    text-decoration: underline;
}

/* Timeline */
.story-timeline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: #8b7355;
}

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

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

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

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

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Team Grid */
.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #5a5a5a;
}

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

.team-member {
    text-align: center;
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 8px;
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: #e8dfd6;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.role {
    color: #8b7355;
    font-weight: 500;
    margin-bottom: 1rem;
}

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

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

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

.content-block p {
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    text-align: left;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.content-wrapper h3 {
    text-align: left;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.content-wrapper p {
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.content-wrapper ul {
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
}

.content-wrapper ul li {
    list-style: disc;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    margin: 1rem 0;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
}

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

.cookie-table td {
    padding: 0.8rem;
    color: #5a5a5a;
}

/* Thank You Page */
.thank-you-hero {
    background-color: #f5f1ed;
    padding: 80px 0;
}

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

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

.thank-you-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lead {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

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

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

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.step-card p {
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

/* Additional Sections */
.benefits-columns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.benefit-col h3 {
    margin-bottom: 1rem;
}

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

.seasonal-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: #5a5a5a;
}

.seasonal-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.highlight-item h3 {
    margin-bottom: 1rem;
}

.highlight-item ul {
    margin-left: 1.5rem;
}

.highlight-item ul li {
    list-style: disc;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

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

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

.process-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #c9b89a;
    margin-bottom: 0.8rem;
}

.process-card h3 {
    margin-bottom: 0.8rem;
}

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

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

.size-tips {
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

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

.size-tips ul {
    margin-left: 1.5rem;
}

.size-tips ul li {
    list-style: disc;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

.feature {
    background-color: #fafafa;
    padding: 1.5rem;
    border-radius: 8px;
}

.feature h3 {
    margin-bottom: 0.8rem;
}

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

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

.direction-option {
    background-color: #fafafa;
    padding: 1.5rem;
    border-radius: 8px;
}

.direction-option h3 {
    margin-bottom: 0.8rem;
}

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

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

.tip-card {
    background-color: #fafafa;
    padding: 1.5rem;
    border-radius: 8px;
}

.tip-card h3 {
    margin-bottom: 0.8rem;
}

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

.company-details {
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 8px;
    max-width: 700px;
    margin: 0 auto;
}

.company-details p {
    color: #5a5a5a;
    margin-bottom: 0.8rem;
}

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

.hours-info {
    background-color: #fafafa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.hours-info p {
    color: #5a5a5a;
    margin-bottom: 0.5rem;
}

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

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

.action-item h3 {
    margin-bottom: 0.8rem;
}

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

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

.achievement-item {
    background-color: #fafafa;
    padding: 1.5rem;
    border-left: 4px solid #8b7355;
    border-radius: 4px;
}

.achievement-item h3 {
    margin-bottom: 0.8rem;
    color: #8b7355;
}

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

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

.reason {
    background-color: #fafafa;
    padding: 1.5rem;
    border-radius: 8px;
}

.reason h3 {
    margin-bottom: 0.8rem;
}

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

/* Tablet Styles */
@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

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

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

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

    .featured-text,
    .featured-visual {
        flex: 1;
    }

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

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

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

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

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

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

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

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

    .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-shrink: 0;
    }

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

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

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

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

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

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

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

    .team-member {
        flex: 1 1 calc(33.333% - 1.75rem);
    }

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

    .step-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

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

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

    .seasonal-highlights {
        flex-direction: row;
        gap: 2rem;
    }

    .highlight-item {
        flex: 1;
    }

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

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

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

    .feature {
        flex: 1 1 calc(33.333% - 1rem);
    }

    .visit-tips {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

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

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

/* Desktop Styles */
@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }

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

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

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

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

    section h2 {
        font-size: 2.2rem;
    }

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

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

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

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

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

    .process-step {
        flex: 1 1 calc(25% - 1.5rem);
    }

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

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

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

    .value-card {
        flex: 1 1 calc(25% - 1.5rem);
    }

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

    .benefit-col {
        flex: 1 1 calc(25% - 1.5rem);
    }

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

    .process-card {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .visit-tips {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .tip-card {
        flex: 1 1 calc(25% - 1.5rem);
    }

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

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

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

    .reason {
        flex: 1 1 calc(25% - 1.5rem);
    }
}