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

:root {
    --primary-color: #2c5aa0;
    --primary-dark: #1e4278;
    --secondary-color: #4a7bc8;
    --accent-color: #e8f4f8;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #767676;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --transition: all 0.3s ease;
}

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: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

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

ul {
    list-style: none;
}

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

/* Header and Navigation */
.site-header {
    background-color: var(--bg-white);
    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: var(--primary-color);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-white);
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
    padding: 5rem 2rem 2rem;
}

.main-nav.active {
    right: 0;
}

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

.main-nav a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    border-radius: 4px;
    transition: var(--transition);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-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: none;
    border: none;
    color: var(--text-medium);
    padding: 0.5rem 1rem;
}

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

/* Hero Sections */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    padding: 3rem 0;
    text-align: center;
}

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

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

.hero-subtitle {
    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(--accent-color);
    padding: 3rem 0;
    text-align: center;
}

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

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

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

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

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--text-medium);
}

/* Trust Indicators */
.trust-indicators {
    background-color: var(--bg-light);
}

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

.trust-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
}

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

.trust-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 0.875rem;
    color: var(--text-medium);
}

/* Service Cards */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

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

.service-card h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

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

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

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

.benefit-item p {
    color: var(--text-medium);
}

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

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

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

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

.process-step p {
    color: var(--text-medium);
}

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

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

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

.testimonial-text {
    margin-bottom: 1rem;
}

.testimonial-text p {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
}

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

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

/* Statistics */
.statistics-section {
    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;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 1rem;
}

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

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-medium);
    line-height: 1.7;
}

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

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

/* CTA Section */
.cta-section {
    background-color: var(--accent-color);
    text-align: center;
}

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

.cta-content p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--text-medium);
}

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

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

.footer-col h3,
.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cookie-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.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

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

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

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

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-medium);
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
}

.modal-body {
    padding: 1.5rem;
}

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

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.category-header h3 {
    font-size: 1.125rem;
    margin: 0;
}

.cookie-category p {
    color: var(--text-medium);
    font-size: 0.875rem;
}

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

/* Service Detail Pages */
.service-detail {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid var(--border-color);
}

.service-detail:last-child {
    border-bottom: none;
}

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

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

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

.service-tagline {
    font-size: 1.125rem;
    color: var(--text-medium);
}

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

.service-description p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.price-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-card {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.price-card:hover {
    border-color: var(--primary-color);
}

.price-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.price-card p {
    font-size: 0.875rem;
    color: var(--text-medium);
}

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

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

.contact-block h3 {
    margin-bottom: 0.75rem;
}

.contact-block p {
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-block a {
    word-break: break-all;
}

.note {
    font-size: 0.875rem;
    font-style: italic;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.contact-note {
    background-color: var(--accent-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

/* Company Info */
.company-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-box {
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.detail-box h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.detail-box p {
    color: var(--text-dark);
    font-weight: 500;
}

/* About Page */
.story-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.highlight-box {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.highlight-graphic {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

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

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

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

.timeline-content p {
    color: var(--text-medium);
    line-height: 1.7;
}

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

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

.industry-card h3 {
    margin-bottom: 0.5rem;
}

.industry-card p {
    color: var(--text-medium);
}

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

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

.thank-you-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

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

.thank-you-message {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.step-card {
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.step-card .step-number {
    margin-bottom: 1rem;
}

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

.waiting-link {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    display: block;
    transition: var(--transition);
}

.waiting-link:hover {
    background-color: var(--accent-color);
}

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

.waiting-link p {
    color: var(--text-medium);
}

.emergency-box {
    text-align: center;
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 8px;
}

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

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

.legal-text h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: left;
}

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

.legal-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

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

.legal-text li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.legal-text a {
    text-decoration: underline;
}

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

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
}

.cookie-table td {
    color: var(--text-medium);
}

/* Service Areas */
.areas-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

.area-item p {
    color: var(--text-medium);
    font-size: 0.875rem;
}

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

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

.flow-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
}

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

.flow-step p {
    color: var(--text-medium);
}

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

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

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

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

/* Utility Classes */
.section-cta {
    text-align: center;
    margin-top: 2rem;
}

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

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

.benefit-box h3 {
    margin-bottom: 0.75rem;
}

.benefit-box p {
    color: var(--text-medium);
}

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

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

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

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

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

    .service-card {
        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 {
        flex: 1 1 calc(50% - 1rem);
    }

    .cookie-actions {
        flex-direction: row;
        justify-content: flex-start;
    }

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

    .footer-col {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

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

    .contact-info {
        flex: 1;
    }

    .contact-details {
        flex: 1;
    }

    .company-details {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .detail-box {
        flex: 1 1 calc(50% - 0.5rem);
    }

    .story-layout {
        flex-direction: row;
        gap: 3rem;
    }

    .story-text {
        flex: 2;
    }

    .story-highlight {
        flex: 1;
    }

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

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

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

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

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

    .step-card {
        flex: 1;
    }

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

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

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

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

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

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

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

    .expect-step {
        flex: 1 1 calc(50% - 1rem);
    }
}

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

    .main-nav {
        position: static;
        width: auto;
        height: auto;
        box-shadow: none;
        padding: 0;
        background: transparent;
    }

    .main-nav ul {
        flex-direction: row;
        gap: 0.5rem;
    }

    .main-nav a {
        padding: 0.5rem 1rem;
    }

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

    section {
        padding: 4rem 0;
    }

    section h2 {
        font-size: 2.25rem;
    }

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

    .trust-item {
        flex: 1;
    }

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

    .service-card {
        flex: 1;
    }

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

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

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

    .stat-item {
        flex: 1;
    }

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

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

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

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

    .footer-content {
        flex-wrap: nowrap;
    }

    .footer-col {
        flex: 1;
    }

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

    .company-details {
        flex-wrap: wrap;
    }

    .detail-box {
        flex: 1 1 calc(33.333% - 0.75rem);
    }

    .areas-grid {
        flex-wrap: wrap;
    }

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

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

    .benefit-box {
        flex: 1;
    }

    .process-flow {
        flex-wrap: nowrap;
    }

    .flow-step {
        flex: 1;
    }

    .expect-steps {
        flex-wrap: nowrap;
    }

    .expect-step {
        flex: 1;
    }
}