/* ==================== */
/* CSS Reset & Base */
/* ==================== */

* {
    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: #2c3e50;
    background-color: #ffffff;
}

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

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

a:hover {
    color: #e67e22;
}

ul {
    list-style: none;
}

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

/* ==================== */
/* Container */
/* ==================== */

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

/* ==================== */
/* Typography */
/* ==================== */

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* ==================== */
/* Header */
/* ==================== */

.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d35400;
}

.main-nav ul {
    display: none;
}

.main-nav a {
    color: #2c3e50;
    padding: 0.5rem 1rem;
    display: block;
    font-weight: 500;
}

.main-nav a:hover,
.main-nav a.active {
    color: #d35400;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
}

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

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

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

/* ==================== */
/* Buttons */
/* ==================== */

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

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

.btn-primary:hover {
    background-color: #e67e22;
    color: #ffffff;
}

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

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

/* ==================== */
/* Hero Sections */
/* ==================== */

.hero {
    background: linear-gradient(135deg, #f39c12 0%, #d35400 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.page-hero {
    background-color: #f8f9fa;
    padding: 3rem 0;
    text-align: center;
}

.page-intro {
    font-size: 1.125rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* ==================== */
/* Sections */
/* ==================== */

section {
    padding: 4rem 0;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

/* ==================== */
/* Philosophy Section */
/* ==================== */

.philosophy-section {
    background-color: #f8f9fa;
}

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

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

.philosophy-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    color: #d35400;
}

.philosophy-icon svg {
    width: 100%;
    height: 100%;
}

/* ==================== */
/* Featured Services */
/* ==================== */

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

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

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

.service-icon {
    width: 48px;
    height: 48px;
    color: #d35400;
    margin-bottom: 1rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: #d35400;
}

.service-link:after {
    content: ' →';
}

/* ==================== */
/* Company Story */
/* ==================== */

.company-story {
    background-color: #ffffff;
}

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

/* ==================== */
/* Benefits Section */
/* ==================== */

.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-block {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #d35400;
}

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

/* ==================== */
/* Testimonials */
/* ==================== */

.testimonials-section {
    background-color: #f8f9fa;
}

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

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

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

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

/* ==================== */
/* Process Section */
/* ==================== */

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

.process-step {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

/* ==================== */
/* Statistics Section */
/* ==================== */

.statistics-section {
    background: linear-gradient(135deg, #d35400 0%, #e67e22 100%);
    color: #ffffff;
}

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

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

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

.stat-label {
    font-size: 1.125rem;
    color: #ffffff;
}

/* ==================== */
/* Knowledge Section */
/* ==================== */

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

.knowledge-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.knowledge-card h3 {
    color: #d35400;
    margin-bottom: 1rem;
}

/* ==================== */
/* FAQ Section */
/* ==================== */

.faq-section {
    background-color: #f8f9fa;
}

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

.faq-item {
    background-color: #ffffff;
    border-radius: 6px;
    margin-bottom: 1rem;
    overflow: hidden;
}

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

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

.faq-icon {
    font-size: 1.5rem;
    color: #d35400;
    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;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
}

/* ==================== */
/* CTA Section */
/* ==================== */

.cta-section {
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

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

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

/* ==================== */
/* Values Section */
/* ==================== */

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

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

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    color: #d35400;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

/* ==================== */
/* Team Section */
/* ==================== */

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

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

/* ==================== */
/* Timeline */
/* ==================== */

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

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 2rem;
    border-left: 3px solid #d35400;
}

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

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

/* ==================== */
/* Services Detail */
/* ==================== */

.services-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.service-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-icon-large {
    width: 72px;
    height: 72px;
    color: #d35400;
}

.service-icon-large svg {
    width: 100%;
    height: 100%;
}

.service-tagline {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 0;
}

.service-description {
    margin-bottom: 2rem;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
}

.price-item h4 {
    margin-bottom: 0.75rem;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #d35400;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9375rem;
    color: #666;
    margin-bottom: 0;
}

/* ==================== */
/* Comparison Grid */
/* ==================== */

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

.comparison-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
}

.comparison-item h3 {
    margin-bottom: 0.5rem;
}

/* ==================== */
/* Process Flow */
/* ==================== */

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

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.flow-icon {
    width: 64px;
    height: 64px;
    color: #d35400;
    margin-bottom: 1rem;
}

.flow-icon svg {
    width: 100%;
    height: 100%;
}

/* ==================== */
/* Contact Page */
/* ==================== */

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

.contact-block {
    text-align: center;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.contact-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    color: #d35400;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-note {
    font-size: 0.9375rem;
    color: #666;
}

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

.direction-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.company-details {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.company-details p {
    margin-bottom: 0.5rem;
}

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

.reason-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ==================== */
/* Thank You Page */
/* ==================== */

.thank-you-hero {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: #27ae60;
}

.success-icon svg {
    width: 100%;
    height: 100%;
}

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

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

.step-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-align: center;
}

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

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

.link-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.link-card h3 {
    color: #d35400;
    margin-bottom: 0.5rem;
}

.reminder-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

/* ==================== */
/* Legal Pages */
/* ==================== */

.legal-hero {
    background-color: #f8f9fa;
    padding: 3rem 0;
}

.legal-intro {
    max-width: 800px;
    margin: 1rem auto 0;
    color: #555;
}

.last-updated {
    font-size: 0.9375rem;
    color: #888;
    margin-top: 1rem;
}

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

.legal-section {
    max-width: 900px;
    margin: 0 auto 3rem;
}

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

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

.legal-section ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: #ffffff;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.cookie-table tr:hover {
    background-color: #f8f9fa;
}

/* ==================== */
/* Footer */
/* ==================== */

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.footer-section p {
    color: #bdc3c7;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
}

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

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

.footer-bottom p {
    color: #95a5a6;
    margin-bottom: 0;
}

/* ==================== */
/* Cookie Banner */
/* ==================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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-content p {
    margin-bottom: 0;
    font-size: 0.9375rem;
}

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

/* ==================== */
/* Cookie Modal */
/* ==================== */

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

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

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

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

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

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

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

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

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

/* ==================== */
/* Utility Classes */
/* ==================== */

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

/* ==================== */
/* Industries Section */
/* ==================== */

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

.industry-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
}

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

/* ==================== */
/* Trust Section */
/* ==================== */

.trust-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

/* ==================== */
/* Responsive Design */
/* ==================== */

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

    h2 {
        font-size: 2.25rem;
    }

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

    .main-nav ul {
        display: flex;
        gap: 1rem;
    }

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

    .philosophy-item {
        flex: 1 1 calc(33.333% - 1.5rem);
        min-width: 250px;
    }

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

    .service-card {
        flex: 1 1 calc(33.333% - 1.5rem);
        min-width: 280px;
    }

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

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

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

    .testimonial {
        flex: 1 1 calc(50% - 1rem);
        min-width: 300px;
    }

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

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

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

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

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

    .value-card {
        flex: 1 1 calc(33.333% - 1.5rem);
        min-width: 250px;
    }

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

    .team-block {
        flex: 1 1 calc(33.333% - 1.5rem);
        min-width: 250px;
    }

    .service-header {
        flex-direction: row;
        align-items: center;
    }

    .service-pricing {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .price-item {
        flex: 1 1 calc(33.333% - 1.5rem);
        min-width: 250px;
    }

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

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

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

    .flow-step {
        flex: 1 1 calc(33.333% - 1.5rem);
        min-width: 200px;
    }

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

    .contact-block {
        flex: 1 1 calc(33.333% - 1.5rem);
        min-width: 250px;
    }

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

    .direction-item {
        flex: 1;
    }

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

    .step-card {
        flex: 1 1 calc(33.333% - 1.5rem);
        min-width: 250px;
    }

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

    .link-card {
        flex: 1;
    }

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

    .footer-section {
        flex: 1 1 calc(33.333% - 1.5rem);
        min-width: 250px;
    }

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

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

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

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

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

    .trust-blocks {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

@media (min-width: 1024px) {
    .testimonial {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .knowledge-card {
        flex: 1 1 calc(25% - 1.5rem);
    }
}