* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #c99667;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd9;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
}

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

header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    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;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    list-style: none;
    padding: 1rem 0;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: var(--bg-light);
    color: var(--secondary-color);
}

.hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

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

.hero h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
}

section {
    padding: 3rem 0;
}

h1, h2, h3, h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.philosophy {
    background-color: var(--bg-light);
}

.philosophy h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

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

.philosophy-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.featured-service {
    padding: 4rem 0;
}

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

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

.featured-visual img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.statistics {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 0;
}

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

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--bg-white);
}

.process h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.process-step {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.step-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.testimonials {
    background-color: var(--bg-light);
}

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

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

.testimonial {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.testimonial-author {
    font-weight: bold;
    color: var(--secondary-color);
}

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

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

.benefit-item img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

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

.industries {
    background-color: var(--bg-light);
}

.industries h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.industry-card {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.knowledge-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.knowledge-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.faq {
    background-color: var(--bg-light);
}

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

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

.faq-item {
    margin-bottom: 1rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1rem 1.5rem;
    background-color: var(--bg-white);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

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

.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: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

.cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
    text-align: center;
    padding: 4rem 0;
}

.cta h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta p {
    color: var(--bg-white);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta .btn-primary {
    background-color: var(--bg-white);
    color: var(--secondary-color);
}

.cta .btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: var(--bg-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

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

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

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

.cookie-modal-content {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

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

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

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

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

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

.page-hero {
    background-color: var(--bg-light);
    padding: 3rem 0;
    text-align: center;
}

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

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

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

.values {
    background-color: var(--bg-light);
}

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

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

.value-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.value-card img {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
}

.team h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

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

.team-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--bg-light);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-placeholder img {
    width: 60px;
    height: 60px;
}

.role {
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.milestones {
    background-color: var(--bg-light);
}

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

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

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    flex-shrink: 0;
    width: 80px;
}

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

.workshop-visual img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.achievements {
    background-color: var(--bg-light);
}

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

.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.achievement-item {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.achievement-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

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

.trust-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.sustainability-detail {
    background-color: var(--bg-light);
}

.sustainability-detail h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.sustainability-item {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.sustainability-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.services-intro {
    background-color: var(--bg-light);
    text-align: center;
}

.services-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-header img {
    width: 50px;
    height: 50px;
}

.service-header h2 {
    margin: 0;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.service-benefits {
    background-color: var(--bg-light);
}

.service-benefits h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.benefit-box {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.benefit-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.process-detail h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.process-phase {
    display: flex;
    gap: 1.5rem;
}

.phase-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.materials {
    background-color: var(--bg-light);
}

.materials h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.material-card {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.material-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.finishes-section {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.finishes-list {
    list-style: none;
    padding-left: 0;
}

.finishes-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.finishes-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.comparison {
    background-color: var(--bg-white);
}

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

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
}

.comparison-header {
    display: none;
}

.comparison-row {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-light);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.comparison-col {
    padding: 0.5rem 0;
}

.comparison-col.highlight {
    font-weight: bold;
    color: var(--secondary-color);
}

.contact-info {
    background-color: var(--bg-light);
}

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

.contact-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

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

.location-visual img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.directions {
    background-color: var(--bg-light);
}

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

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

.direction-item {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.direction-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.company-details {
    background-color: var(--bg-white);
}

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

.details-content p {
    margin-bottom: 0.75rem;
}

.visit-info {
    background-color: var(--bg-light);
}

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

.visit-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.thank-you-section {
    padding: 5rem 0;
    text-align: center;
}

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

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

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

.next-steps {
    background-color: var(--bg-light);
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.step-box {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.step-icon img {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
}

.legal-page {
    padding: 3rem 0;
}

.legal-date {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

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

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

.legal-section h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

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

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

.legal-section a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
}

.cookie-table thead {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    font-weight: bold;
}

.cookie-table tbody tr:hover {
    background-color: var(--bg-light);
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

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

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

    .nav-menu a {
        padding: 0.5rem 0;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background-color: transparent;
        color: var(--secondary-color);
        border-bottom: 2px solid var(--secondary-color);
    }

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

    .hero .container {
        display: flex;
        align-items: center;
        gap: 3rem;
    }

    .hero-content {
        flex: 1;
        margin-bottom: 0;
    }

    .hero-image {
        flex: 1;
    }

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

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

    .featured-text {
        flex: 1;
    }

    .featured-visual {
        flex: 1;
    }

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

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

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

    .process-step {
        flex: 1;
        min-width: 250px;
    }

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

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

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

    .industry-card {
        flex: 1;
        min-width: 250px;
    }

    .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;
    }

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

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

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

    .team-member {
        flex: 1;
        min-width: 250px;
    }

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

    .workshop-text {
        flex: 1;
    }

    .workshop-visual {
        flex: 1;
    }

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

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

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

    .benefit-box {
        flex: 1;
        min-width: 250px;
    }

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

    .material-card {
        flex: 1;
        min-width: 250px;
    }

    .comparison-header {
        display: flex;
        background-color: var(--secondary-color);
        color: var(--bg-white);
        padding: 1rem;
        border-radius: 8px 8px 0 0;
    }

    .comparison-row {
        flex-direction: row;
        background-color: var(--bg-white);
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 0;
        border-radius: 0;
    }

    .comparison-row:last-child {
        border-radius: 0 0 8px 8px;
    }

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

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

    .contact-card {
        flex: 1;
    }

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

    .location-text {
        flex: 1;
    }

    .location-visual {
        flex: 1;
    }

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

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

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

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

    .step-box {
        flex: 1;
    }
}

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

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 4rem 0;
    }
}