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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #60a5fa;
    --accent-color: #93c5fd;
    --background: #ffffff;
    --background-alt: #f8fafc;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

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

ul {
    margin-bottom: 1rem;
}

ul li {
    color: var(--text-secondary);
}

address {
    font-style: normal;
}

/* Header and Navigation */
.header {
    background: var(--background);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    border-top: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    list-style: none;
}

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

.nav-menu li {
    border-bottom: 1px solid var(--border-color);
}

.nav-menu a {
    display: block;
    padding: 1rem 20px;
    color: var(--text-primary);
    transition: background 0.3s ease;
}

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

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

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

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

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

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

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

.btn-primary {
    background: var(--primary-color);
    color: #ffffff;
}

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

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    padding: 3rem 0;
    text-align: center;
}

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

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

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

.hero-actions .btn {
    width: 100%;
    max-width: 300px;
}

/* Page Hero */
.page-hero {
    background: var(--background-alt);
    padding: 3rem 0 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

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

.intro-visual svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Featured Insights */
.insights-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.insight-card {
    background: var(--background);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

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

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

/* Philosophy Section */
.philosophy-content {
    text-align: center;
}

.philosophy-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.philosophy-item {
    padding: 1.5rem;
    background: var(--background-alt);
    border-radius: 8px;
}

/* Statistics Section */
.statistics-section {
    background: var(--primary-color);
    color: #ffffff;
}

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

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

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

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

.stat-label {
    color: #dbeafe;
    font-size: 1rem;
}

/* Benefits Section */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.benefit-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 60px;
}

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

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

.testimonial {
    background: var(--background-alt);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-style: italic;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Industries Served */
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.industry-tag {
    background: var(--background-alt);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: var(--text-primary);
}

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

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

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

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

/* Insights Section */
.insights-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.insight-article {
    padding: 1.5rem;
    background: var(--background-alt);
    border-radius: 8px;
}

.insight-article h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

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

.faq-question:hover {
    background: var(--background-alt);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    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: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: #ffffff;
    text-align: center;
}

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

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

/* Team Section */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 1.5rem;
    background: var(--background-alt);
    border-radius: 8px;
}

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
}

.member-avatar svg {
    width: 100%;
    height: 100%;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

.value-card {
    padding: 1.5rem;
    background: var(--background-alt);
    border-radius: 8px;
    text-align: center;
}

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

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

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

.timeline-item {
    display: flex;
    gap: 1.5rem;
}

.timeline-year {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 80px;
}

.timeline-content {
    flex: 1;
    padding-bottom: 1rem;
    border-left: 2px solid var(--border-color);
    padding-left: 1.5rem;
}

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

/* Achievements */
.achievements-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.achievement-card {
    padding: 1.5rem;
    background: var(--background-alt);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.achievement-year {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

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

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

/* Pricing Section */
.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.price-card {
    background: var(--background);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
}

.price-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #ffffff;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.price {
    text-align: center;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    display: block;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.price-description {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Services List */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    padding: 1.5rem;
    background: var(--background-alt);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1rem;
}

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

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

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
}

.comparison-header,
.comparison-row {
    display: flex;
    min-width: 600px;
}

.comparison-header {
    background: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px 8px 0 0;
}

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

.comparison-row:last-child {
    border-radius: 0 0 8px 8px;
}

.comparison-feature,
.comparison-plan,
.comparison-value {
    flex: 1;
    padding: 1rem;
}

.comparison-feature {
    font-weight: 600;
}

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

/* Steps Horizontal */
.steps-horizontal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-box {
    padding: 1.5rem;
    background: var(--background-alt);
    border-radius: 8px;
    text-align: center;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.step-arrow {
    display: none;
}

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

.contact-card {
    padding: 2rem;
    background: var(--background-alt);
    border-radius: 8px;
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

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

.contact-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
}

.hours-list p {
    margin-bottom: 0.5rem;
}

/* Departments */
.departments-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.department-card {
    padding: 1.5rem;
    background: var(--background-alt);
    border-radius: 8px;
}

.department-card a {
    font-weight: 600;
}

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

.info-item {
    padding: 1rem;
    background: var(--background-alt);
    border-radius: 8px;
}

.info-item h3 {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.info-item p {
    font-weight: 600;
    color: var(--text-primary);
}

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

.direction-method h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.inline-icon {
    width: 30px;
    height: 30px;
}

/* Response Times */
.response-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.response-card {
    padding: 1.5rem;
    background: var(--background-alt);
    border-radius: 8px;
    text-align: center;
}

.response-time {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

/* Thank You Page */
.thankyou-hero {
    padding: 4rem 0;
    text-align: center;
}

.thankyou-content {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.thankyou-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

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

.step-card {
    padding: 2rem;
    background: var(--background-alt);
    border-radius: 8px;
    text-align: center;
}

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

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

.explore-card {
    padding: 2rem;
    background: var(--background-alt);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
}

.explore-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

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

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

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

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

.legal-text h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-text h5 {
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
}

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

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

.legal-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

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

.legal-text table th {
    background: var(--background-alt);
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: #ffffff;
    padding: 3rem 0 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

.cookie-content p {
    color: #cbd5e1;
    margin-bottom: 0;
}

.cookie-content a {
    color: #93c5fd;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--background);
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

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

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

.cookie-options label {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    cursor: pointer;
}

.cookie-options input[type="checkbox"] {
    margin-right: 0.5rem;
}

.cookie-description {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-left: 1.5rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

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

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 4rem 0;
    }

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

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

    .hero-actions .btn {
        width: auto;
    }

    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .nav-menu li {
        border: none;
    }

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

    .nav-menu a:hover,
    .nav-menu a.active {
        background: transparent;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .contact-card {
        flex: 1;
    }

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

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

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

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

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

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

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

    .step-card {
        flex: 1;
    }

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

    .explore-card {
        flex: 1;
    }

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

    .footer-section {
        flex: 1;
    }

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

    .cookie-content p {
        flex: 1;
    }

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

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

    .steps-horizontal {
        flex-direction: row;
        align-items: center;
    }

    .step-box {
        flex: 1;
    }

    .step-arrow {
        display: block;
        width: 60px;
    }

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

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

    h2 {
        font-size: 2.25rem;
    }

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

    section {
        padding: 4rem 0;
    }

    .insight-card {
        flex: 0 0 calc(25% - 1.125rem);
    }

    .stat-item {
        flex: 0 0 calc(25% - 1.5rem);
    }

    .testimonial {
        flex: 0 0 calc(33.333% - 1.333rem);
    }

    .team-member {
        flex: 0 0 calc(33.333% - 1.333rem);
    }

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

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

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

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

    .trust-item {
        flex: 0 0 calc(25% - 1.5rem);
    }

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

    .price-card {
        flex: 0 0 calc(25% - 1.5rem);
    }

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

    .benefit-box {
        flex: 0 0 calc(33.333% - 1rem);
    }

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

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

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

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

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

    .response-card {
        flex: 1;
    }
}