/* 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 {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

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

/* Header */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo:hover {
    color: #2563eb;
}

.nav-list {
    display: none;
    list-style: none;
    flex-direction: column;
    gap: 1rem;
}

.nav-link {
    color: #4b5563;
    font-weight: 500;
    padding: 0.5rem 0;
    display: block;
}

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

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

.mobile-toggle span {
    width: 24px;
    height: 3px;
    background-color: #1f2937;
    transition: all 0.3s ease;
}

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

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.hero-small {
    padding: 3rem 0;
}

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

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

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

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

.section-gray {
    background-color: #f9fafb;
}

.section-dark {
    background-color: #1f2937;
    color: #fff;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: inherit;
}

/* Intro Text */
.intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
}

/* Features Grid */
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.feature-icon img {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.7;
}

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

.process-step {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.process-step p {
    color: #6b7280;
    line-height: 1.7;
}

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

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

.industry-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.industry-item p {
    color: #6b7280;
    line-height: 1.7;
}

/* Stats */
.stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

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

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

/* Testimonials */
.testimonials {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

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

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

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

.testimonial-author span {
    color: #6b7280;
    font-size: 0.875rem;
}

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

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

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    padding: 0.75rem 2rem 0.75rem 0;
    position: relative;
    transition: color 0.3s ease;
}

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

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) 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.75rem 0 1rem;
    color: #6b7280;
    line-height: 1.7;
}

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

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

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

.btn-secondary {
    background-color: #6b7280;
    color: #fff;
}

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

/* CTA Block */
.cta-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
}

.cta-block h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-block p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #4b5563;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 3rem 0 1.5rem;
}

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

.footer-column h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-column h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.footer-column p {
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

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

.footer-column ul li a {
    color: #d1d5db;
}

.footer-column ul li a:hover {
    color: #fff;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #fff;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
}

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

/* 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: 1rem;
}

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

.modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    color: #1f2937;
}

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

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

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

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

.cookie-option p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0.5rem 0 0 1.75rem;
}

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

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

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

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.value-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Team Grid */
.team-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.team-intro p {
    font-size: 1.125rem;
    color: #4b5563;
}

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

.team-member {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.team-member h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.member-role {
    font-size: 1rem;
    color: #667eea;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member p {
    color: #6b7280;
    line-height: 1.7;
}

/* Philosophy */
.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-lead {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.philosophy-content p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2rem;
    border-left: 2px solid #e5e7eb;
    position: relative;
    margin-left: 2rem;
}

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

.timeline-year {
    position: absolute;
    left: -3rem;
    top: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: #667eea;
}

.timeline-content {
    padding-left: 1rem;
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.7;
}

/* Quote Block */
.quote-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-block blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.quote-block cite {
    font-size: 1rem;
    font-style: normal;
    opacity: 0.9;
}

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

.services-intro p {
    font-size: 1.125rem;
    color: #4b5563;
}

.service-detailed {
    max-width: 900px;
    margin: 0 auto;
}

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

.service-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
}

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

.service-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-details ul {
    list-style-position: inside;
    margin-left: 0;
}

.service-details ul li {
    color: #6b7280;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.benefit-item p {
    color: #6b7280;
    line-height: 1.7;
}

/* Process Flow */
.process-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.flow-step {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.flow-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #667eea;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.flow-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.flow-step p {
    color: #6b7280;
    line-height: 1.7;
}

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

.contact-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.contact-block h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.contact-block p {
    color: #4b5563;
    line-height: 1.7;
}

.contact-block a {
    color: #2563eb;
    font-weight: 500;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-box {
    background-color: #667eea;
    color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
}

.info-box h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.info-box p {
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.info-note {
    font-size: 0.875rem;
    opacity: 0.9;
}

.company-description {
    max-width: 900px;
    margin: 0 auto;
}

.company-description p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

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

.support-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.support-item p {
    color: #6b7280;
    line-height: 1.7;
}

.final-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
}

.final-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.125rem;
    color: #4b5563;
}

/* Thank You Page */
.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.next-steps h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

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

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.step-content p {
    color: #6b7280;
    line-height: 1.7;
}

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

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

.meanwhile-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.meanwhile-card p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.link-arrow {
    color: #2563eb;
    font-weight: 600;
}

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

/* Legal Content */
.legal-content {
    padding: 2rem 0 4rem;
}

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

.legal-intro {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.legal-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: #1f2937;
}

.legal-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: #1f2937;
}

.legal-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
    color: #1f2937;
}

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

.legal-text ul {
    margin: 1rem 0 1rem 2rem;
    list-style-type: disc;
}

.legal-text ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #4b5563;
}

.legal-update {
    margin-top: 3rem;
    font-style: italic;
    color: #6b7280;
}

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

.cookie-table thead {
    background-color: #f9fafb;
}

.cookie-table th {
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #e5e7eb;
}

.cookie-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
}

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

.content-main h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.content-main p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

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

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

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

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

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

    .stats {
        flex-direction: row;
        justify-content: space-around;
    }

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

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

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

    .team-member {
        flex: 0 0 calc(50% - 1rem);
    }

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

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

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

    .support-item {
        flex: 0 0 calc(50% - 0.75rem);
    }

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

    .meanwhile-card {
        flex: 0 0 calc(33.333% - 1rem);
    }

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

    .cookie-content p {
        max-width: 70%;
    }

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

    .footer-column {
        flex: 1;
    }

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

    .contact-main {
        flex: 2;
    }

    .contact-sidebar {
        flex: 1;
    }

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

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

    .nav-list {
        display: flex;
        flex-direction: row;
    }

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

    .feature-card {
        flex: 1;
    }

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

    .value-card {
        flex: 1;
    }

    .industries {
        flex-wrap: nowrap;
    }

    .industry-item {
        flex: 1;
    }

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

    .benefit-item {
        flex: 1;
    }

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

    .support-item {
        flex: 1;
    }
}