/* 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, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
}

h2 {
    font-size: 2rem;
    color: #1a1a1a;
}

h3 {
    font-size: 1.5rem;
    color: #2d2d2d;
}

h4 {
    font-size: 1.25rem;
    color: #2d2d2d;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

ul {
    list-style-position: inside;
}

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

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

.logo:hover {
    color: #1d4ed8;
}

.nav-menu {
    display: none;
    list-style: none;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

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

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

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

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

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

.hero-content h1 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.btn-primary {
    background-color: #2563eb;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    color: #fff;
}

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

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

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

.section-intro {
    font-size: 1.125rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #555;
}

/* Company Intro */
.intro-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.intro-text h2 {
    margin-bottom: 1.5rem;
}

.intro-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-icon {
    max-width: 200px;
    height: auto;
}

/* Values Section */
.values-section {
    background-color: #f9fafb;
}

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

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

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

.value-card h3 {
    margin-bottom: 0.75rem;
    color: #2563eb;
}

/* Services Highlight */
.services-highlight {
    background-color: #fff;
}

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

.service-feature {
    padding: 2rem;
    border-left: 4px solid #2563eb;
    background-color: #f9fafb;
}

.service-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.service-feature h3 {
    margin-bottom: 1rem;
}

/* Statistics Section */
.statistics-section {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: #fff;
}

.statistics-section h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

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

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

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

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

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

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

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

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

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: #2563eb;
}

/* Knowledge Section */
.knowledge-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.knowledge-item h3 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

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

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

.trust-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

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

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

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 0;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1a1a1a;
}

.faq-question:hover {
    color: #2563eb;
}

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

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

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

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

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    color: #fff;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Services Page */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.125rem;
    color: #555;
}

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

.service-card-full {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.service-header h2 {
    margin-bottom: 0;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.service-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-details h3 {
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: #2563eb;
}

.service-details ul {
    list-style-type: none;
}

.service-details li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.service-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

/* Service Benefits */
.service-benefits {
    background-color: #f9fafb;
}

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

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

.benefit-item h3 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

/* Comparison */
.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comparison-col {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
}

.comparison-col.highlight {
    border-color: #2563eb;
    background-color: #eff6ff;
}

.comparison-col h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid #e5e7eb;
}

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

.comparison-list li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #2563eb;
    font-size: 1.5rem;
}

/* Contact Page */
.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-info h2,
.contact-details h2 {
    margin-bottom: 2rem;
}

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

.contact-block h3 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.contact-note {
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
}

.info-box {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.info-box h3 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

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

.directions-text h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.directions-text ul {
    list-style: none;
    margin-bottom: 1rem;
}

.directions-text li {
    padding: 0.5rem 0;
}

.directions-note {
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
}

/* Company Info */
.company-info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
}

.info-card h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

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

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

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

.thank-you-text {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

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

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

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

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

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.info-section {
    background-color: #fff;
}

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

.info-list {
    list-style: none;
}

.info-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.info-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

/* Legal Pages */
.legal-hero {
    background-color: #f9fafb;
    padding: 3rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.legal-hero h1 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.legal-date {
    text-align: center;
    color: #666;
    font-style: italic;
}

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

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

.legal-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

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

.legal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

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

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

.cookie-settings-link {
    text-align: center;
    margin-top: 3rem;
}

/* About Page */
.story-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.mission-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
}

.mission-card h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

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

.philosophy-text {
    margin-top: 2rem;
}

.philosophy-point {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid #2563eb;
}

.philosophy-point h3 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

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

.quality-item {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
}

.quality-item h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

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

.achievement-card {
    background: #fff;
    border-left: 4px solid #2563eb;
    padding: 1.5rem;
}

.achievement-year {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.75rem;
}

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

.industry-item {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
}

.industry-item h3 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

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

.why-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    border-radius: 8px;
}

.why-item h3 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

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

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

.footer-col h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #ccc;
    font-size: 0.9rem;
}

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

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

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #2563eb;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    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 {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    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.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

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

.modal-content {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

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

.cookie-option {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 6px;
}

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

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

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 1.75rem;
    font-size: 0.875rem;
    color: #666;
    font-weight: 400;
}

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

/* Tablet Styles */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

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

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

    .mobile-menu-toggle {
        display: none;
    }

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

    .intro-grid {
        flex-direction: row;
        align-items: center;
    }

    .intro-text,
    .intro-visual {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

    .knowledge-item {
        flex: 1 1 calc(50% - 0.75rem);
    }

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

    .trust-item {
        flex: 1;
    }

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

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

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

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

    .comparison-col {
        flex: 1;
    }

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

    .contact-info,
    .contact-details {
        flex: 1;
    }

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

    .directions-text {
        flex: 1;
    }

    .company-info-grid {
        flex-direction: row;
    }

    .info-card {
        flex: 1;
    }

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

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

    .step-card {
        flex: 1;
    }

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

    .mission-card {
        flex: 1;
    }

    .team-qualities {
        flex-direction: row;
    }

    .quality-item {
        flex: 1;
    }

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

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

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

    .industry-item {
        flex: 1 1 calc(50% - 0.75rem);
    }

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

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

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

    .footer-col {
        flex: 1;
    }

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

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

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

/* Desktop Styles */
@media (min-width: 1024px) {
    .values-grid {
        flex-wrap: nowrap;
    }

    .value-card {
        flex: 1;
    }

    .stats-grid {
        flex-wrap: nowrap;
    }

    .stat-item {
        flex: 1;
    }

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

    .process-step {
        flex-direction: column;
        flex: 1;
        text-align: center;
    }

    .testimonials-grid {
        flex-wrap: nowrap;
    }

    .testimonial-card {
        flex: 1;
    }

    .knowledge-grid {
        flex-wrap: nowrap;
    }

    .knowledge-item {
        flex: 1;
    }

    .benefits-grid {
        flex-wrap: nowrap;
    }

    .benefit-item {
        flex: 1;
    }

    .company-info-grid {
        flex-wrap: nowrap;
    }

    .info-card {
        flex: 1;
    }

    .mission-grid {
        flex-wrap: nowrap;
    }

    .mission-card {
        flex: 1;
    }

    .team-qualities {
        flex-wrap: nowrap;
    }

    .quality-item {
        flex: 1;
    }

    .achievements-grid {
        flex-wrap: nowrap;
    }

    .achievement-card {
        flex: 1;
    }

    .industries-list {
        flex-wrap: nowrap;
    }

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

    .why-grid {
        flex-wrap: nowrap;
    }

    .why-item {
        flex: 1 1 calc(33.333% - 1.33rem);
    }
}