/* 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: #333;
    background-color: #fff;
}

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

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

ul {
    list-style: none;
}

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

/* Header and Navigation */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

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

.nav-menu li {
    padding: 0.75rem 20px;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    display: block;
}

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

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

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

.btn-primary {
    background-color: #d4721e;
    color: #fff;
    border-color: #d4721e;
}

.btn-primary:hover {
    background-color: #b85f19;
    border-color: #b85f19;
}

.btn-secondary {
    background-color: transparent;
    color: #d4721e;
    border-color: #d4721e;
}

.btn-secondary:hover {
    background-color: #d4721e;
    color: #fff;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff6ed 0%, #ffe4cc 100%);
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

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

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

/* Sections */
section {
    padding: 50px 0;
}

h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

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

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

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.philosophy-item {
    text-align: center;
    padding: 20px;
}

.philosophy-item img {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
}

/* Service Cards */
.services-highlight {
    background-color: #fff;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card img {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
}

.service-card h3 {
    color: #d4721e;
    margin-bottom: 10px;
}

/* Stats Section */
.stats {
    background-color: #d4721e;
    color: #fff;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
}

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

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

/* About Preview */
.about-preview {
    background-color: #f9f9f9;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

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

/* Process Steps */
.process {
    background-color: #fff;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #d4721e;
}

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

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #d4721e;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
}

/* Regions */
.regions {
    background-color: #fff;
}

.regions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.region-item {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.region-item h3 {
    color: #d4721e;
    margin-bottom: 8px;
}

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

.insights-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.insight-item h3 {
    color: #d4721e;
    margin-bottom: 12px;
}

.insight-item p {
    line-height: 1.7;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

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

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

.faq-question[aria-expanded="true"] {
    background-color: #d4721e;
    color: #fff;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

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

.faq-answer p {
    padding: 20px;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    background-color: #d4721e;
    color: #fff;
    text-align: center;
}

.cta h2 {
    color: #fff;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.cta .btn-primary {
    background-color: #fff;
    color: #d4721e;
    border-color: #fff;
}

.cta .btn-primary:hover {
    background-color: #f0f0f0;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: #d4721e;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-column p {
    color: #ccc;
    line-height: 1.6;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a:hover {
    color: #d4721e;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -4px 20px 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: 15px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
}

.modal-content h2 {
    margin-bottom: 20px;
}

.cookie-option {
    margin-bottom: 20px;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
}

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

.cookie-option p {
    margin-top: 8px;
    color: #666;
    font-size: 0.9rem;
    margin-left: 30px;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #fff6ed 0%, #ffe4cc 100%);
    padding: 60px 0 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #555;
}

/* Legal Content */
.legal-content {
    padding: 40px 0;
}

.legal-text h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #d4721e;
}

.legal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

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

.legal-text li {
    list-style: disc;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

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

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

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

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

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

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.value-card img {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
}

.value-card h3 {
    color: #d4721e;
    margin-bottom: 12px;
}

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

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

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-member {
    text-align: center;
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.member-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.member-role {
    color: #d4721e;
    font-weight: 600;
    margin-bottom: 10px;
}

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

.timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-left: 20px;
    border-left: 3px solid #d4721e;
}

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

.timeline-content h3 {
    margin-bottom: 8px;
}

/* Achievements */
.achievements {
    background-color: #fff;
}

.achievements-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.achievement-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.achievement-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
}

.achievement-item h3 {
    color: #d4721e;
    margin-bottom: 10px;
}

/* Approach */
.approach {
    background-color: #f9f9f9;
}

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

/* CTA Secondary */
.cta-secondary {
    background-color: #fff6ed;
    text-align: center;
}

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

/* Services Detailed */
.services-list {
    background-color: #fff;
}

.service-detailed {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.service-icon img {
    width: 80px;
    height: 80px;
}

.service-info h2 {
    color: #d4721e;
    margin-bottom: 15px;
}

.service-description {
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-features {
    margin: 20px 0;
}

.service-features li {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d4721e;
    margin-top: 15px;
}

/* Service Comparison */
.service-comparison {
    background-color: #f9f9f9;
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
}

.comparison-card h3 {
    color: #d4721e;
    margin-bottom: 12px;
}

.comparison-card strong {
    color: #1a1a1a;
}

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

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
}

.benefit-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
}

.benefit-item h3 {
    color: #d4721e;
    margin-bottom: 10px;
}

.benefit-item p {
    line-height: 1.7;
}

/* Process Overview */
.process-overview {
    background-color: #f9f9f9;
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.process-item {
    display: flex;
    gap: 20px;
}

.process-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #d4721e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.process-content h3 {
    margin-bottom: 8px;
}

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

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

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-details h2 {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1rem;
    color: #d4721e;
    margin-bottom: 5px;
}

.contact-item a {
    color: #d4721e;
    text-decoration: underline;
}

.contact-description h2 {
    margin-bottom: 20px;
}

.contact-topics {
    margin: 20px 0;
}

.contact-topics li {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.directions-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.directions-text h3 {
    color: #d4721e;
    margin-top: 25px;
    margin-bottom: 10px;
}

.directions-text p {
    margin-bottom: 15px;
    line-height: 1.7;
}

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

/* Company Info */
.company-info-section {
    background-color: #fff;
}

.company-details p {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Contact FAQ */
.contact-faq {
    background-color: #f9f9f9;
}

/* Alternative Contact */
.alternative-contact {
    background-color: #fff;
}

.alt-contact-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.alt-contact-item {
    text-align: center;
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.alt-contact-item img {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
}

.alt-contact-item h3 {
    color: #d4721e;
    margin-bottom: 10px;
}

/* CTA Contact */
.cta-contact {
    background-color: #fff6ed;
    text-align: center;
}

.cta-contact a {
    color: #d4721e;
    text-decoration: underline;
    font-weight: 600;
}

.cta-note {
    margin-top: 10px;
    font-size: 1.1rem;
}

/* Thank You */
.thank-you-section {
    padding: 80px 0;
    text-align: center;
}

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

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

.thank-you-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

/* Next Steps */
.next-steps {
    background-color: #f9f9f9;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.step-card .step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #d4721e;
    color: #fff;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 15px;
}

/* Useful Links */
.useful-links {
    background-color: #fff;
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.link-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.link-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
}

.link-card h3 {
    color: #d4721e;
    margin-bottom: 10px;
}

.link-arrow {
    display: inline-block;
    margin-top: 15px;
    color: #d4721e;
    font-weight: 600;
}

.link-arrow:hover {
    text-decoration: underline;
}

/* Services Intro */
.services-intro {
    background-color: #f9f9f9;
    padding: 40px 0;
}

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

/* FAQ Services */
.faq-services {
    background-color: #f9f9f9;
}

/* CTA Services */
.cta-services {
    background-color: #fff6ed;
    text-align: center;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero .container {
        flex-direction: row;
        align-items: center;
    }

    .hero-content {
        flex: 1;
    }

    .hero-visual {
        flex: 1;
    }

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

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

    .philosophy-item {
        flex: 1 1 calc(33.333% - 20px);
    }

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

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

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

    .stat-item {
        flex: 1 1 calc(50% - 15px);
    }

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

    .about-text {
        flex: 1;
    }

    .about-image {
        flex: 1;
    }

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

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

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

    .testimonial {
        flex: 1 1 calc(50% - 15px);
    }

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

    .region-item {
        flex: 1 1 calc(50% - 10px);
    }

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

    .insight-item {
        flex: 1 1 calc(50% - 15px);
    }

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

    .value-card {
        flex: 1 1 calc(50% - 15px);
    }

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

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

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

    .achievement-item {
        flex: 1 1 calc(50% - 15px);
    }

    .service-detailed {
        flex-direction: row;
        align-items: flex-start;
    }

    .service-icon {
        flex-shrink: 0;
    }

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

    .comparison-card {
        flex: 1 1 calc(50% - 10px);
    }

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

    .benefit-item {
        flex: 1 1 calc(50% - 15px);
    }

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

    .contact-details {
        flex: 1;
    }

    .contact-description {
        flex: 1;
    }

    .directions-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .directions-text {
        flex: 1;
    }

    .directions-visual {
        flex: 1;
    }

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

    .alt-contact-item {
        flex: 1 1 calc(33.333% - 17px);
    }

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

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

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

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

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

    .step-card {
        flex: 1 1 calc(33.333% - 17px);
    }

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

    .link-card {
        flex: 1 1 calc(33.333% - 17px);
    }

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

    .footer-column {
        flex: 1;
    }
}

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

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

    .nav-menu li {
        padding: 0;
    }

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

    h2 {
        font-size: 2.25rem;
    }

    .service-card {
        flex: 1 1 calc(25% - 20px);
    }

    .stat-item {
        flex: 1 1 calc(25% - 20px);
    }

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

    .process-step {
        flex: 1 1 calc(33.333% - 20px);
    }

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

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

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

    .region-item {
        flex: 1 1 calc(33.333% - 15px);
    }

    .insights-content {
        flex-direction: row;
    }

    .insight-item {
        flex: 1 1 calc(33.333% - 17px);
    }

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

    .value-card {
        flex: 1 1 calc(33.333% - 17px);
    }

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

    .team-member {
        flex: 1 1 calc(33.333% - 20px);
    }

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

    .achievement-item {
        flex: 1 1 calc(25% - 20px);
    }

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

    .comparison-card {
        flex: 1 1 calc(25% - 15px);
    }

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

    .benefit-item {
        flex: 1 1 calc(25% - 20px);
    }
}
