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

:root {
    --primary-color: #0066cc;
    --primary-dark: #004d99;
    --secondary-color: #00a86b;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
}

html {
    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 {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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 */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-list li a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    display: block;
}

.nav-list li a:hover,
.nav-list li a.active {
    color: var(--primary-color);
}

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

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.nav.active .nav-list {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    padding: 20px;
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0066cc 0%, #00a86b 100%);
    color: var(--bg-white);
    padding: 60px 0;
}

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

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.page-hero {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

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

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* Sections */
.section {
    padding: 60px 0;
}

.section-alt {
    background-color: var(--bg-light);
}

.section-title-center {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.section-intro {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.content-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.content-block p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 15px;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-medium);
    font-size: 16px;
}

/* Services Detail */
.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.service-detail-card h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.service-description {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 25px;
}

.service-includes {
    margin-bottom: 25px;
}

.service-includes h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.service-includes ul {
    list-style: disc;
    padding-left: 20px;
}

.service-includes li {
    margin-bottom: 8px;
    color: var(--text-medium);
}

.service-pricing {
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
}

/* Benefits Section */
.benefits-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

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

.benefit-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.benefit-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    flex-shrink: 0;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.benefit-content p {
    color: var(--text-medium);
    font-size: 16px;
}

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

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.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: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.step p {
    color: var(--text-medium);
    font-size: 16px;
}

/* Stats Section */
.stats-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-medium);
}

/* Testimonials */
.testimonials {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

/* Industries */
.industries-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.industry-item {
    padding: 25px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.industry-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.industry-item p {
    color: var(--text-medium);
    font-size: 15px;
}

/* FAQ */
.faq-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

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

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

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

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

.faq-icon {
    font-size: 24px;
    color: var(--primary-color);
    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 20px 20px 20px;
    color: var(--text-medium);
    font-size: 16px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0066cc 0%, #00a86b 100%);
    color: var(--bg-white);
}

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

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.cta-content .btn-primary:hover {
    background-color: var(--bg-light);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 50px 0 20px;
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

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

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    box-shadow: 0 -2px 10px 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: 20px;
    align-items: center;
}

.cookie-content p {
    font-size: 14px;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* 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: 20px;
}

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

.cookie-modal-content {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

.cookie-modal-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.cookie-option {
    margin-bottom: 20px;
    padding: 15px;
    background-color: var(--bg-light);
    border-radius: 6px;
}

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

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

.cookie-option p {
    font-size: 14px;
    color: var(--text-medium);
    margin-top: 10px;
}

.cookie-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* About Page Specific */
.content-two-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-col h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.content-col p {
    color: var(--text-medium);
    margin-bottom: 15px;
}

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

.value-card {
    padding: 25px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-medium);
    font-size: 15px;
}

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

.team-member {
    text-align: center;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.team-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.team-role {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    color: var(--text-medium);
    font-size: 15px;
}

.philosophy-section {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

.philosophy-section p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.timeline-item {
    display: flex;
    gap: 25px;
}

.timeline-year {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
    min-width: 60px;
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-medium);
    font-size: 15px;
}

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

.trust-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.trust-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.trust-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

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

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

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-medium);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-color);
}

.contact-form-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-intro {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.contact-checklist {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 25px;
}

.contact-checklist li {
    color: var(--text-medium);
    margin-bottom: 10px;
}

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

.direction-item {
    padding: 25px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.direction-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.direction-item p {
    color: var(--text-medium);
    font-size: 15px;
}

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

.info-block {
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.info-block h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.info-block p {
    color: var(--text-medium);
    font-size: 15px;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.area-item {
    padding: 12px 20px;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-dark);
}

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

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

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

.thank-you-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.thank-you-text {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

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

.step-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.step-card .step-number {
    background-color: var(--secondary-color);
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-medium);
    font-size: 15px;
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 28px;
    margin: 40px 0 20px 0;
    color: var(--text-dark);
}

.legal-text h3 {
    font-size: 22px;
    margin: 30px 0 15px 0;
    color: var(--text-dark);
}

.legal-text h4 {
    font-size: 18px;
    margin: 20px 0 10px 0;
    color: var(--text-dark);
}

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

.legal-text ul,
.legal-text ol {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-text ul {
    list-style: disc;
}

.legal-text ol {
    list-style: decimal;
}

.legal-text li {
    color: var(--text-medium);
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.legal-intro {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.cookie-table {
    margin: 20px 0;
}

.cookie-table h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cookie-table td {
    padding: 10px;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table td:first-child {
    width: 30%;
    font-weight: 600;
}

/* Comparison Table */
.comparison-table {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-row {
    display: flex;
}

.comparison-header {
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
}

.comparison-cell {
    flex: 1;
    padding: 15px;
    text-align: center;
    border-right: 1px solid var(--border-color);
}

.comparison-cell:first-child {
    text-align: left;
    flex: 2;
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-row:not(.comparison-header) {
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:not(.comparison-header):hover {
    background-color: var(--bg-light);
}

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

    .hero-text,
    .hero-subtitle {
        font-size: 20px;
    }

    .section {
        padding: 80px 0;
    }

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

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

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

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

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

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

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

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

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

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

    .content-two-col {
        flex-direction: row;
    }

    .content-col {
        flex: 1;
    }

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

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

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

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

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

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

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

    .contact-info,
    .contact-form-section {
        flex: 1;
    }

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

    .direction-item {
        flex: 1 1 calc(50% - 12.5px);
    }

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

    .info-block {
        flex: 1 1 calc(50% - 10px);
    }

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

    .step-card {
        flex: 1 1 calc(50% - 12.5px);
    }

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

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

    .cookie-content p {
        text-align: left;
        flex: 1;
    }
}

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

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

    .nav.active .nav-list {
        position: static;
        box-shadow: none;
        padding: 0;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 56px;
    }

    .section-title-center {
        font-size: 40px;
    }

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

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

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

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

    .testimonials {
        flex-wrap: nowrap;
    }

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

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

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

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

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

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

    .footer-section {
        flex: 1;
    }
}
