/* 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;
}

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

ul {
    list-style: none;
}

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

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

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

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background-color: #2c2c2c;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

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

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

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

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

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

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

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

.btn-primary:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

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

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

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

.btn-text {
    background: transparent;
    color: #666;
    padding: 0.5rem 1rem;
}

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

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

.hero-content {
    margin-bottom: 2rem;
}

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

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

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

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

.page-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.1rem;
    color: #666;
}

.legal-hero {
    background: #f8f6f3;
}

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

section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.section-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

/* Values Section */
.values-section,
.benefits-section {
    background-color: #f8f6f3;
}

.values-grid,
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.value-icon,
.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

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

.value-card p,
.benefit-item p {
    color: #555;
    line-height: 1.7;
}

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

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

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

.story-visual img {
    width: 100%;
    border-radius: 8px;
}

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

.collection-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.showcase-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.showcase-visual img {
    width: 100%;
    border-radius: 8px;
}

.showcase-info h3 {
    margin-bottom: 1rem;
}

.showcase-info p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

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

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

.testimonial {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #8b6f47;
}

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

.testimonial cite {
    font-style: normal;
    color: #ccc;
    font-size: 0.95rem;
}

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

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

.philosophy-block {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.philosophy-block h3 {
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.philosophy-block p {
    color: #555;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    background-color: #8b6f47;
    color: #ffffff;
    padding: 3rem 0;
}

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

.stat-item {
    padding: 1.5rem;
}

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

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

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

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

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

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #8b6f47;
    margin-bottom: 1rem;
}

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

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

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

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

.faq-item {
    background-color: #f8f6f3;
    border-radius: 8px;
    overflow: hidden;
}

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

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.faq-item.active .faq-question {
    background-color: #e8e3dc;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #ffffff;
    text-align: center;
    padding: 4rem 0;
}

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

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

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Services/Collections Grid */
.services-grid-section {
    padding: 3rem 0;
}

.services-grid-section.alt-bg {
    background-color: #f8f6f3;
}

.collection-description {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

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

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

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

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

.comparison-table {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.comparison-row {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #e5e5e5;
}

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

.comparison-cell {
    padding: 1rem;
    flex: 1;
}

.comparison-cell.highlight {
    background-color: #f8f6f3;
    font-weight: 600;
}

.header-row .comparison-cell {
    font-weight: 700;
    background-color: #2c2c2c;
    color: #ffffff;
}

/* Contact Page */
.contact-info-section {
    padding: 3rem 0;
}

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

.contact-block {
    margin-bottom: 2rem;
}

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

.contact-address {
    line-height: 1.8;
    color: #555;
}

.contact-email a {
    color: #8b6f47;
    text-decoration: underline;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    padding: 0.5rem 0;
    color: #555;
}

.hours-note {
    margin-top: 1rem;
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
}

.directions-section {
    background-color: #f8f6f3;
}

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

.direction-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.direction-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

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

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

/* About Page */
.content-section,
.mission-section,
.approach-section {
    padding: 3rem 0;
}

.content-block p,
.mission-text p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

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

.mission-visual img {
    width: 100%;
    border-radius: 8px;
}

.values-detail-section {
    background-color: #f8f6f3;
}

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

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

.value-detail-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

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

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

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

.team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-role {
    color: #8b6f47;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

/* Timeline */
.milestones-section {
    background-color: #f8f6f3;
}

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

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #8b6f47;
}

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

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

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

/* Legal Pages */
.legal-content {
    padding: 3rem 0;
}

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

.legal-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.legal-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

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

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

.legal-text ul li {
    list-style: disc;
}

.legal-text ol li {
    list-style: decimal;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table tr {
    border-bottom: 1px solid #e5e5e5;
}

.cookies-table td {
    padding: 1rem;
    color: #555;
    line-height: 1.6;
}

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

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

.thank-you-image {
    width: 200px;
    margin: 0 auto 2rem;
}

.thank-you-content h1 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thank-you-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.next-steps-section {
    background-color: #f8f6f3;
}

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

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

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

.next-step-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.next-step-card a {
    color: #8b6f47;
    font-weight: 600;
    text-decoration: underline;
}

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.footer-section a {
    color: #ccc;
    font-size: 0.95rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

/* 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;
    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.95rem;
    line-height: 1.6;
    margin: 0;
}

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

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    display: none;
}

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

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: relative;
    background-color: #ffffff;
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 8px;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

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

.cookie-option span {
    font-weight: 600;
    color: #2c2c2c;
}

.cookie-option p {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero {
        padding: 4rem 0;
    }

    .hero-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .hero-content > * {
        flex: 1;
    }

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

    .nav-toggle {
        display: none;
    }

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

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

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

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

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

    .story-content,
    .mission-content {
        flex-direction: row;
        align-items: center;
    }

    .story-content > *,
    .mission-content > * {
        flex: 1;
    }

    .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(50% - 1rem);
    }

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

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

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

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

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

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

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

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

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

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

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

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

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

    .modal-buttons {
        flex-direction: row;
    }
}

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

    .hero p {
        font-size: 1.2rem;
    }

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

    section h2 {
        font-size: 2.2rem;
    }

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

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

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

    .philosophy-blocks {
        flex-direction: row;
    }

    .philosophy-block {
        flex: 1;
    }

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

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

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

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

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

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

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

    .showcase-item {
        flex-direction: row;
        align-items: center;
    }

    .showcase-item.reverse {
        flex-direction: row-reverse;
    }

    .showcase-item > * {
        flex: 1;
    }

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

    .contact-grid > * {
        flex: 1;
    }

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

    .next-step-card {
        flex: 1;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus States */
a:focus,
button:focus,
input:focus {
    outline: 2px solid #8b6f47;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .cookie-banner,
    .cookie-modal,
    .cta-section {
        display: none;
    }
}