:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

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

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

.nav-list {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list li {
    margin: 0;
}

.nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

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

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

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

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

.nav.active .nav-list {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
}

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

.hero h1 {
    color: var(--bg-white);
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

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

.hero-visual {
    display: none;
}

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

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

.btn-primary:hover {
    background-color: #d97706;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

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

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.company-intro,
.philosophy,
.services-highlight,
.process-section,
.testimonials,
.industries-served,
.benefits-section,
.insights-section {
    background-color: var(--bg-white);
}

.philosophy,
.industries-served,
.insights-section {
    background-color: var(--bg-light);
}

.intro-grid,
.services-grid,
.benefits-grid,
.testimonials-grid,
.industries-list,
.insights-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.intro-item,
.service-card,
.benefit-block,
.testimonial,
.industry-item,
.insight-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.intro-icon,
.service-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

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

.philosophy-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 12px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

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

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

.step,
.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.step-number,
.flow-icon {
    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.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.testimonial {
    display: flex;
    flex-direction: column;
}

.testimonial p {
    font-style: italic;
    color: var(--text-medium);
    flex-grow: 1;
}

.testimonial-author {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

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

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

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

.benefit-block {
    padding: 1.5rem;
}

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

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

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

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

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    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 1.25rem 1.25rem;
    color: var(--text-medium);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    text-align: center;
}

.cta-content h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

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

.footer {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 3rem 0 1rem;
}

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

.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.9375rem;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

.modal.show {
    display: flex;
}

.modal-content {
    background-color: var(--bg-white);
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    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 h3 {
    margin: 0;
    font-size: 1.25rem;
}

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

.modal-close:hover {
    color: var(--text-dark);
}

.modal-body {
    padding: 1.5rem;
}

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

.cookie-option label {
    display: flex;
    gap: 1rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 0.25rem;
}

.cookie-option strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--secondary-color);
}

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

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

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

.page-hero h1 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.125rem;
    opacity: 0.95;
    margin: 0;
}

.company-story,
.values-section,
.team-section,
.achievements-section,
.trust-indicators,
.why-us-section,
.philosophy-extended {
    padding: 4rem 0;
}

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

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

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

.value-item img {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.timeline-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

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

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

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

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

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

.benefits-list {
    max-width: 800px;
    margin: 2rem auto 0;
}

.benefits-list li {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.services-overview {
    padding: 4rem 0;
}

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

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.service-icon img {
    width: 80px;
    height: 80px;
}

.service-features {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.service-features li {
    margin-bottom: 0.5rem;
}

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

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.price-label {
    font-weight: 600;
    color: var(--text-dark);
}

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

.service-benefits {
    background-color: var(--bg-light);
}

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

.benefit-card img {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
}

.comparison-section {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.comparison-header,
.comparison-row {
    display: flex;
}

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

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

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:nth-child(even) {
    background-color: var(--bg-light);
}

.comparison-cell {
    flex: 1;
    padding: 1rem;
    text-align: center;
}

.comparison-cell:first-child {
    flex: 1.5;
    text-align: left;
    font-weight: 600;
}

.contact-info-section {
    padding: 4rem 0;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-icon img {
    width: 48px;
    height: 48px;
}

.contact-text h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

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

.company-info-section {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

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

.info-block {
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.info-block h3 {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.info-block p {
    margin: 0;
    font-weight: 600;
    color: var(--secondary-color);
}

.locations-section {
    padding: 4rem 0;
}

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

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

.location-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.location-hours {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1rem;
}

.directions-section {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

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

.direction-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
}

.direction-item h3 {
    margin-bottom: 1rem;
}

.direction-item p {
    margin-bottom: 0.75rem;
}

.thankyou-section {
    padding: 5rem 0;
    text-align: center;
}

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

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

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

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

.next-steps-section {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

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

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 12px;
}

.contact-info-brief {
    padding: 4rem 0;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.info-card img {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
}

.legal-page {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.legal-intro {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.legal-content h2:first-of-type {
    margin-top: 1.5rem;
    border-top: none;
    padding-top: 0;
}

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

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 0.5rem;
}

.cookie-preferences-button {
    margin-top: 2rem;
    text-align: center;
}

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

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .menu-toggle {
        display: none;
    }

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

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

    .hero {
        padding: 5rem 0;
    }

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

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .intro-grid,
    .services-grid,
    .benefits-grid,
    .testimonials-grid,
    .values-grid,
    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .intro-item,
    .service-card,
    .testimonial,
    .value-item,
    .team-member {
        flex: 1 1 calc(50% - 1rem);
    }

    .industries-list,
    .insights-grid,
    .locations-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .philosophy-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .philosophy-text,
    .philosophy-stats {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

    .cookie-buttons {
        flex-shrink: 0;
    }

    .service-detail {
        flex-direction: row;
        align-items: flex-start;
    }

    .service-icon {
        flex-shrink: 0;
    }

    .service-info {
        flex: 1;
    }

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

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

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

    .contact-details,
    .contact-description {
        flex: 1;
    }

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

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

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

    .direction-item {
        flex: 1;
    }

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

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

    .step-item {
        flex: 1;
    }

    .info-cards {
        flex-direction: row;
    }

    .info-card {
        flex: 1;
    }

    .legal-content {
        padding: 4rem;
    }

    .timeline-item {
        flex-direction: row;
        gap: 2rem;
    }

    .timeline-year {
        flex-shrink: 0;
        width: 100px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 6rem 0;
    }

    .hero-content {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 4rem;
    }

    .hero-visual {
        display: block;
        flex-shrink: 0;
        width: 400px;
    }

    .intro-item,
    .industry-item,
    .insight-card,
    .location-card {
        flex: 1 1 calc(33.333% - 1.34rem);
    }

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

    .testimonial {
        flex: 1 1 calc(33.333% - 1.34rem);
    }

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

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

    .info-block {
        flex: 1 1 calc(25% - 1.125rem);
    }
}

@media (min-width: 1200px) {
    .services-grid {
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 1.34rem);
    }
}
