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

html {
    font-size: 16px;
    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;
}

ul {
    list-style: none;
}

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

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

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

/* Header and Navigation */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    width: 2rem;
    height: 2rem;
    padding: 0.25rem;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #2c2c2c;
    transition: all 0.3s ease;
}

.nav-menu {
    position: fixed;
    top: 4.5rem;
    left: -100%;
    width: 100%;
    height: calc(100vh - 4.5rem);
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.25rem;
    transition: left 0.3s ease;
    border-top: 1px solid #e5e5e5;
}

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

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

.nav-menu a {
    font-size: 1.125rem;
    color: #2c2c2c;
    display: block;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #666666;
}

/* Hero Sections */
.hero {
    padding: 3rem 0;
    background-color: #f8f8f8;
}

.hero-content {
    text-align: center;
}

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

.hero p {
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero {
    padding: 3rem 0;
    background-color: #f8f8f8;
    text-align: center;
}

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

.page-hero .lead {
    font-size: 1.125rem;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2c2c2c;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1a1a1a;
}

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

.btn-secondary:hover {
    background-color: #2c2c2c;
    color: #ffffff;
}

.btn-small {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-outline {
    background-color: transparent;
    color: #2c2c2c;
    border: 1px solid #2c2c2c;
}

.btn-outline:hover {
    background-color: #f8f8f8;
}

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

section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

section h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #2c2c2c;
}

.section-intro {
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 2rem;
    max-width: 800px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.value-card {
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 0.5rem;
}

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

.value-card p {
    color: #666666;
    line-height: 1.7;
}

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

.testimonials h2 {
    color: #ffffff;
    text-align: center;
}

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

.testimonial {
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
}

.testimonial p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial cite {
    display: block;
    font-style: normal;
    color: #cccccc;
    font-size: 0.9375rem;
}

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

.process-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: #666666;
    font-size: 1.125rem;
}

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

.step {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
}

.step-number {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #999999;
    margin-bottom: 0.5rem;
}

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

.step p {
    color: #666666;
    line-height: 1.7;
}

/* Statistics */
.stats {
    background-color: #2c2c2c;
    color: #ffffff;
}

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

.stat {
    padding: 1.5rem;
}

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

.stat-label {
    display: block;
    font-size: 1rem;
    color: #cccccc;
}

/* Insight Section */
.insight {
    background-color: #ffffff;
}

.insight-content {
    max-width: 800px;
}

.insight-content p {
    color: #666666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

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

.faq-item {
    background-color: #ffffff;
    border-radius: 0.5rem;
    overflow: hidden;
}

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

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #666666;
    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.25rem 1.25rem;
    color: #666666;
    line-height: 1.7;
}

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

/* CTA Section */
.cta {
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.125rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

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

.story-content {
    max-width: 800px;
}

.story-content h2 {
    margin-bottom: 1.5rem;
}

.story-content p {
    color: #666666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.mission-content h2 {
    margin-bottom: 2rem;
}

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

.mission-item {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
}

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

.mission-item p {
    color: #666666;
    line-height: 1.7;
}

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

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

.team-member {
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 0.5rem;
}

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

.role {
    font-size: 0.9375rem;
    color: #999999;
    margin-bottom: 0.75rem;
}

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

/* Manufacturing Section */
.manufacturing {
    background-color: #f8f8f8;
}

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

.partner {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
}

.partner h3 {
    margin-bottom: 0.75rem;
}

.partner p {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.partner p:last-child {
    margin-bottom: 0;
}

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

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

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

.timeline-year {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2c2c2c;
}

.timeline-content {
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 0.5rem;
}

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

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

/* Commitments Section */
.commitments {
    background-color: #f8f8f8;
}

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

.commitment-card {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
}

.commitment-card h3 {
    margin-bottom: 0.75rem;
}

.commitment-card p {
    color: #666666;
    line-height: 1.7;
}

/* Services/Collections Page */
.collections {
    background-color: #ffffff;
}

.collection-intro {
    max-width: 800px;
    margin-bottom: 2.5rem;
}

.collection-intro p {
    color: #666666;
    font-size: 1.125rem;
    line-height: 1.7;
}

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

.service-card {
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 0.5rem;
}

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

.service-header h2 {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.price {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2c2c2c;
}

.service-card p {
    color: #666666;
    line-height: 1.7;
}

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

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

.benefit {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
}

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

.benefit p {
    color: #666666;
    line-height: 1.7;
}

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

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

.comparison-row {
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 0.5rem;
}

.comparison-label h3 {
    margin-bottom: 0.75rem;
}

.comparison-content p {
    color: #666666;
    line-height: 1.7;
}

/* Process Highlight */
.process-highlight {
    background-color: #f8f8f8;
}

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

.process-card {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
}

.process-number {
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    text-align: center;
    background-color: #2c2c2c;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

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

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

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

.contact-block p {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.info-detail {
    margin-bottom: 1.5rem;
}

.info-detail h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
}

.info-detail p {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.note {
    font-size: 0.9375rem;
    font-style: italic;
}

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

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

.direction-method h3 {
    margin-bottom: 0.75rem;
}

.direction-method p {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.direction-method p:last-child {
    margin-bottom: 0;
}

/* About Showroom */
.about-showroom {
    background-color: #ffffff;
}

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

.feature {
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 0.5rem;
}

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

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

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

.company-details p {
    color: #666666;
    line-height: 1.9;
    margin-bottom: 0.5rem;
}

/* Thank You Page */
.thank-you-hero {
    padding: 4rem 0;
    background-color: #f8f8f8;
    text-align: center;
}

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

.thank-you-content .lead {
    font-size: 1.25rem;
    color: #666666;
    margin-bottom: 1rem;
}

.thank-you-content p {
    color: #666666;
    margin-bottom: 2rem;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.next-steps {
    background-color: #ffffff;
}

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

.step-card {
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 0.5rem;
}

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

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

.step-card a {
    color: #2c2c2c;
    text-decoration: underline;
}

.step-card a:hover {
    color: #666666;
}

/* Legal Pages */
.legal-page {
    background-color: #ffffff;
    padding: 3rem 0;
}

.legal-page h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.updated {
    color: #999999;
    font-size: 0.9375rem;
    margin-bottom: 2rem;
}

.legal-content {
    max-width: 900px;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

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

.legal-section p {
    color: #666666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-section li {
    list-style: disc;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

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

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.footer-section h4 {
    font-size: 1.0625rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

.footer-section a {
    color: #cccccc;
}

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

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

.footer-bottom p {
    color: #999999;
    font-size: 0.9375rem;
}

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

.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;
    color: #cccccc;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.modal.show {
    display: flex;
}

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

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

.modal-header h2 {
    font-size: 1.5rem;
    margin: 0;
}

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

.modal-close:hover {
    color: #2c2c2c;
}

.modal-body {
    padding: 1.5rem;
}

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

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

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

.cookie-option strong {
    display: block;
    margin-bottom: 0.25rem;
}

.cookie-option p {
    color: #666666;
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

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

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

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

    .philosophy-item {
        flex: 1;
        min-width: 250px;
    }

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

    .featured-text {
        flex: 1;
    }

    .featured-visual {
        flex: 1;
    }

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

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

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

    .testimonial {
        flex: 1;
        min-width: 300px;
    }

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

    .stat {
        flex: 1;
        min-width: 200px;
    }

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

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

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

    .contact-block {
        flex: 1;
    }

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

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

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

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

    .footer-section {
        flex: 1;
        min-width: 200px;
    }
}

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

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

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

    .nav-menu a {
        font-size: 1rem;
        padding: 0;
    }

    .hero {
        padding: 5rem 0;
    }

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

    .page-hero {
        padding: 4rem 0;
    }

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

    section {
        padding: 5rem 0;
    }

    section h2 {
        font-size: 2rem;
    }

    .philosophy-grid {
        gap: 3rem;
    }

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

    .value-card {
        flex: 1;
        min-width: 0;
    }

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

    .mission-item {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

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

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

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

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

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

    .benefit {
        flex: 1;
        min-width: calc(50% - 0.75rem);
    }

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

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

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

    .direction-method {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

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

    .feature {
        flex: 1;
        min-width: calc(50% - 0.75rem);
    }

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

    .step-card {
        flex: 1;
    }

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

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