/* 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, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #8b7355;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #6b5335;
}

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

/* Header */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

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

.logo:hover {
    color: #8b7355;
}

/* Navigation */
.nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.nav.active {
    display: flex;
}

.nav-link {
    display: block;
    padding: 1rem 20px;
    border-bottom: 1px solid #f0f0f0;
    color: #2c2c2c;
    font-weight: 500;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

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

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f4f1ea 0%, #ffffff 100%);
    padding: 3rem 0;
}

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

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

.hero-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

/* Page Hero */
.page-hero,
.page-hero-simple {
    background-color: #f4f1ea;
    padding: 3rem 0 2rem;
    text-align: center;
}

.page-hero h1,
.page-hero-simple h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.page-date {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

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

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

.section-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

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

.philosophy-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.philosophy-item p {
    color: #555;
    line-height: 1.6;
}

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

.service-card {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #2c2c2c;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

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

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

.benefits-intro h2 {
    margin-bottom: 1rem;
}

.benefits-intro p {
    font-size: 1.05rem;
    color: #555;
}

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

.benefit-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.benefit-block p {
    color: #555;
    line-height: 1.6;
}

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

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

.testimonial {
    background-color: #ffffff;
    padding: 1.5rem;
    border-left: 4px solid #d4a574;
    border-radius: 4px;
}

.testimonial p {
    font-style: italic;
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: #8b7355;
    font-size: 0.95rem;
}

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

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

.stat-item {
    padding: 1rem;
}

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

.stat-label {
    font-size: 1rem;
    color: #e5e5e5;
}

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

.process-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #d4a574;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step h3 {
    font-size: 1.2rem;
    color: #2c2c2c;
}

.process-step p {
    color: #555;
    line-height: 1.6;
}

/* Industry Insights */
.industry-insights {
    background-color: #f9f9f9;
}

.insights-wrapper h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.insight-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    color: #2c2c2c;
}

.insight-text h3:first-child {
    margin-top: 0;
}

.insight-text p {
    color: #555;
    line-height: 1.7;
}

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

.faq-item {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
}

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

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

.faq-icon {
    font-size: 1.5rem;
    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-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1rem 1.25rem;
    color: #555;
    line-height: 1.7;
    background-color: #fafafa;
}

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

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-primary:hover {
    background-color: #6b5335;
    border-color: #6b5335;
    color: #ffffff;
}

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

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

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

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.footer-section p {
    color: #c5c5c5;
    line-height: 1.6;
}

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

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

.footer-links a {
    color: #c5c5c5;
}

.footer-links a:hover {
    color: #d4a574;
}

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

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

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

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

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

.modal.active {
    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;
    font-size: 1.5rem;
}

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

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

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

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

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

/* About Page Styles */
.story {
    background-color: #fafafa;
}

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

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

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

.story-visual {
    max-width: 300px;
    margin: 0 auto;
}

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

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

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

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.value-card p {
    color: #555;
    line-height: 1.6;
}

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

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

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
}

.team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: #2c2c2c;
}

.team-role {
    font-size: 0.95rem;
    color: #8b7355;
    margin-bottom: 0.75rem;
}

.team-member p {
    color: #555;
    line-height: 1.6;
}

/* Approach */
.approach-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.approach-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4a574;
}

.approach-step h3 {
    font-size: 1.2rem;
    color: #2c2c2c;
}

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

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #d4a574;
}

.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d4a574;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 0.5rem;
}

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

.timeline-item p {
    color: #555;
    line-height: 1.6;
}

/* Commitment Grid */
.commitment-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.commitment-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.commitment-item p {
    color: #555;
    line-height: 1.6;
}

/* Services/Products Page */
.products-intro {
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

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

.product-card {
    background-color: #fafafa;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.product-visual {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 1rem;
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.product-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8b7355;
    margin-top: 1rem;
}

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

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

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.benefit-item p {
    color: #555;
    line-height: 1.6;
}

/* Steps Horizontal */
.steps-horizontal {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.step-card p {
    color: #555;
    line-height: 1.6;
}

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

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

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

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.contact-item p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.25rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-box {
    background-color: #f4f1ea;
    padding: 1.5rem;
    border-radius: 8px;
}

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

.contact-box p {
    color: #555;
    margin-bottom: 0.5rem;
}

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

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

.direction-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

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

/* Visit Grid */
.visit-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.visit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
}

.visit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.visit-card p {
    color: #555;
    line-height: 1.6;
}

/* About Content Split */
.about-content-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

.about-visual {
    max-width: 300px;
    margin: 0 auto;
}

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

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

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

.thank-you-section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.thank-you-message {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

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

.step-item .step-number {
    margin: 0 auto 1rem;
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.step-item p {
    color: #555;
    line-height: 1.6;
}

.cta-alt {
    background-color: #f9f9f9;
}

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

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

.cta-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2c2c2c;
}

.cta-item p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.legal-text h2 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

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

.legal-text h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c2c2c;
}

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

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

.legal-text li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

.legal-text a:hover {
    color: #6b5335;
}

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

    .nav {
        display: flex;
        flex-direction: row;
        position: static;
        background-color: transparent;
        border: none;
        box-shadow: none;
    }

    .nav-link {
        border: none;
        padding: 0.5rem 1rem;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: transparent;
    }

    /* Hero */
    .hero-content {
        flex-direction: row;
        align-items: center;
    }

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

    /* Grids */
    .philosophy-grid,
    .values-grid,
    .services-preview,
    .testimonials-grid,
    .stats-grid,
    .benefits-list,
    .benefits-comparison,
    .products-grid,
    .steps-horizontal,
    .visit-grid,
    .directions-content,
    .cta-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-item,
    .value-card,
    .service-card,
    .testimonial,
    .stat-item,
    .benefit-block,
    .benefit-item,
    .product-card,
    .step-card,
    .visit-card,
    .direction-item,
    .cta-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

    /* Story Content */
    .story-content,
    .about-content-split {
        flex-direction: row;
        align-items: center;
    }

    .story-text,
    .about-text {
        flex: 1;
    }

    .story-visual,
    .about-visual {
        flex: 0 0 300px;
    }

    /* Contact Grid */
    .contact-grid {
        flex-direction: row;
    }

    .contact-main {
        flex: 2;
    }

    .contact-aside {
        flex: 1;
    }

    /* Footer */
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    /* Cookie Banner */
    .cookie-content {
        flex-direction: row;
        align-items: center;
    }

    .cookie-content p {
        flex: 1;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

    /* Thank You Actions */
    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }

    /* Steps Grid */
    .steps-grid {
        flex-direction: row;
    }

    .step-item {
        flex: 1;
    }

    /* Insight Content */
    .insight-content {
        flex-direction: row;
    }

    .insight-text {
        flex: 1;
    }
}

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

    .section h2 {
        font-size: 2.2rem;
    }

    .philosophy-item,
    .value-card,
    .stat-item,
    .team-member {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .service-card,
    .product-card {
        flex: 1 1 calc(25% - 1.125rem);
    }

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