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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #64748b;
    --text-color: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--primary-dark);
}

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

/* Header */
.site-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.logo a:hover {
    color: var(--primary-color);
}

/* Navigation */
.main-nav ul {
    display: none;
    list-style: none;
}

.main-nav.active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    box-shadow: var(--shadow-lg);
}

.main-nav ul li {
    padding: 0.5rem 20px;
}

.main-nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--primary-color);
}

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

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s;
}

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

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

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

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

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-text {
    background: transparent;
    color: var(--text-light);
    border: none;
    padding: 0.75rem 1rem;
}

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

/* Hero Sections */
.hero {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: var(--bg-white);
    padding: 4rem 0;
    text-align: center;
}

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

.hero-lead {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

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

.page-hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.page-lead {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

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

section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-header {
    margin-bottom: 2rem;
}

.section-header.centered {
    text-align: center;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.125rem;
}

/* Company Philosophy */
.company-philosophy {
    background-color: var(--bg-light);
}

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

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

.philosophy-icon {
    margin-bottom: 1rem;
}

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

/* Statistics */
.statistics {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

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

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.card-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
}

/* Service Detailed List */
.service-detailed-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-detailed {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

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

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.service-features h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.service-features ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

.process-step,
.step-card {
    background-color: var(--bg-white);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 4px;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-icon {
    margin-bottom: 1rem;
}

/* Company Story */
.story-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.story-visual {
    text-align: center;
}

.story-visual svg {
    max-width: 100%;
    height: auto;
}

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

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

.industry-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

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

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

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 1.125rem;
    color: var(--text-light);
}

.testimonial-author strong {
    display: block;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.insight-item {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.insight-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.benefit-block,
.benefit-column {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.benefit-block h3,
.benefit-column h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--bg-white);
}

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

.faq-answer p {
    padding: 1.25rem;
    color: var(--text-light);
}

/* CTA Sections */
.cta {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: var(--bg-white);
    text-align: center;
}

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

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

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

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

/* Footer */
.site-footer {
    background-color: var(--text-color);
    color: var(--bg-white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

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

.footer-section a {
    color: var(--bg-light);
}

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

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

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

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

.cookie-banner-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

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

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

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

.cookie-modal-content {
    background-color: var(--bg-white);
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

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

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
}

.cookie-modal-close:hover {
    color: var(--text-color);
}

.cookie-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"] {
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

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

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

.cookie-option p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: right;
}

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

.value-item {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

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

.team-member {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.timeline-year {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
    width: 80px;
}

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

/* Achievements */
.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.achievement-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

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

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

.trust-item {
    text-align: center;
    padding: 2rem;
}

.trust-item svg {
    margin-bottom: 1rem;
}

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

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

.contact-info-box,
.contact-description {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

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

.contact-detail h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.contact-detail a {
    font-weight: 600;
}

.detail-note {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

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

.direction-method h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

.company-detail h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* Thank You Page */
.thank-you-hero {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

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

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-icon svg {
    display: inline-block;
}

.thank-you-lead {
    font-size: 1.25rem;
    color: var(--text-light);
}

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

.step-item {
    display: flex;
    gap: 1.5rem;
}

.step-marker {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.meanwhile-suggestions,
.info-sources,
.facilities-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.suggestion-card,
.info-source,
.facility {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.suggestion-card h3,
.info-source h3,
.facility h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.reassurance-content,
.contact-box,
.availability-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.email-highlight {
    font-size: 1.25rem;
    margin-top: 1rem;
}

/* Legal Pages */
.legal-hero {
    background-color: var(--bg-light);
    padding: 3rem 0;
}

.legal-intro {
    max-width: 800px;
    margin: 1rem auto;
    font-size: 1.125rem;
    color: var(--text-light);
}

.last-updated {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.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;
    font-size: 1.125rem;
}

.legal-section h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--primary-color);
}

.legal-section p {
    margin-bottom: 1rem;
}

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

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

.cookie-table {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.cookie-table h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cookie-table ul {
    list-style: none;
    padding-left: 0;
}

.cookie-table ul li {
    margin-bottom: 0.5rem;
}

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

.pricing-note {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.pricing-note h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

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

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

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

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

.approach-point h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

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

.mission-visual svg {
    max-width: 100%;
    height: auto;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

    .main-nav ul {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        position: static;
        background-color: transparent;
        border: none;
        padding: 0;
        box-shadow: none;
    }

    .main-nav ul li {
        padding: 0;
    }

    .main-nav ul li a {
        padding: 0;
    }

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

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

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

    /* Grids */
    .philosophy-grid,
    .stats-grid,
    .services-cards,
    .testimonial-grid,
    .insights-content,
    .benefits-layout,
    .values-grid,
    .team-members,
    .achievements-list,
    .trust-grid,
    .company-details-grid,
    .meanwhile-suggestions,
    .info-sources,
    .facilities-list,
    .pricing-info,
    .approach-points {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-item,
    .stat-item,
    .service-card,
    .testimonial,
    .insight-item,
    .benefit-block,
    .benefit-column,
    .value-item,
    .achievement-item,
    .trust-item,
    .company-detail,
    .suggestion-card,
    .info-source,
    .facility,
    .pricing-note,
    .approach-point {
        flex: 1;
        min-width: 280px;
    }

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

    .testimonial,
    .insight-item {
        flex: 0 0 calc(33.333% - 1.5rem);
    }

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

    /* Story Layout */
    .story-content,
    .contact-layout,
    .mission-content {
        flex-direction: row;
        align-items: center;
    }

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

    .story-visual,
    .mission-visual {
        flex: 1;
    }

    .contact-info-box {
        flex: 1;
    }

    .contact-description {
        flex: 1;
    }

    /* Service Header */
    .service-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    /* Cookie Banner */
    .cookie-banner-actions {
        flex-direction: row;
        justify-content: center;
    }

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

    .footer-section {
        flex: 1;
    }

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

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

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

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

@media (min-width: 1024px) {
    section {
        padding: 4rem 0;
    }

    .hero {
        padding: 6rem 0;
    }

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