:root {
    --primary-color: #2c5f8d;
    --primary-dark: #1e4562;
    --primary-light: #3a7ab3;
    --secondary-color: #e67e22;
    --secondary-dark: #d35400;
    --text-dark: #2c3e50;
    --text-medium: #5a6c7d;
    --text-light: #7f8c8d;
    --background-light: #f8f9fa;
    --background-medium: #ecf0f1;
    --border-color: #dfe4ea;
    --white: #ffffff;
    --success: #27ae60;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
}

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

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-dark);
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.2rem;
    font-weight: 700;
}

h2 {
    font-size: 1.9rem;
    font-weight: 600;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

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

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

ul {
    list-style: none;
}

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

.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand .logo {
    height: 45px;
    width: auto;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    flex-direction: column;
    padding: 1rem 0;
}

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

.nav-menu li {
    padding: 0.5rem 1.5rem;
}

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

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

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

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

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

.hero-lead {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

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

.hero-visual {
    display: none;
}

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

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

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

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

section {
    padding: 3rem 0;
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-header.centered {
    text-align: center;
}

.section-header p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

.company-intro {
    background: var(--background-light);
}

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

.intro-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

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

.intro-card h3 {
    margin-bottom: 1rem;
}

.philosophy {
    background: var(--white);
}

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

.philosophy-visual {
    display: none;
}

.services-highlight {
    background: var(--background-light);
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-feature {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-icon {
    margin-bottom: 1.5rem;
}

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

.link-arrow {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

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

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

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

.process {
    background: var(--white);
}

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

.process-step {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.testimonials {
    background: var(--background-light);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

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

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

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

.benefits {
    background: var(--white);
}

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

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

.benefit-item img {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

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

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

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

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

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

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-medium);
}

.cta {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

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

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

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

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

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.footer-section a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

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

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

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

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

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

.cookie-content p {
    margin: 0;
}

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

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

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

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

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

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

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

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

.cookie-option p {
    color: var(--text-medium);
    font-weight: 400;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

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

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

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

.page-hero .lead {
    font-size: 1.1rem;
    opacity: 0.95;
}

.content-section {
    padding: 3rem 0;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-visual {
    display: none;
}

.values-section {
    background: var(--background-light);
}

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

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

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

.team-section {
    background: var(--white);
}

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

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

.team-avatar {
    margin-bottom: 1.5rem;
}

.team-avatar img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
}

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

.milestones-section {
    background: var(--background-light);
}

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

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

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

.timeline-content {
    flex: 1;
}

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

.approach-section {
    background: var(--white);
}

.approach-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.approach-point {
    padding-left: 1.5rem;
    border-left: 3px solid var(--secondary-color);
}

.industries-section {
    background: var(--background-light);
}

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

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

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

.awards-section {
    background: var(--white);
}

.awards-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.award-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.award-item img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.commitment-section {
    background: var(--background-light);
}

.commitment-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--secondary-color);
}

.services-overview {
    background: var(--white);
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

.services-list {
    background: var(--background-light);
}

.service-detailed {
    background: var(--white);
    padding: 2.5rem;
    margin-bottom: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-header {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--background-light);
}

.service-header img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

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

.service-body p {
    margin-bottom: 1.5rem;
}

.service-features {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 8px;
}

.service-features h3 {
    margin-bottom: 1rem;
}

.service-features ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
}

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

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

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

.price-card h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.price-note {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
}

.service-benefits {
    background: var(--white);
}

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

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

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

.service-process {
    background: var(--background-light);
}

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

.process-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.process-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-faq {
    background: var(--white);
}

.contact-info {
    background: var(--background-light);
}

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

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

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

.contact-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.about-contact {
    background: var(--white);
}

.about-contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-contact-visual {
    display: none;
}

.directions {
    background: var(--background-light);
}

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

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

.regional-offices {
    background: var(--white);
}

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

.office-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
}

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

.office-email {
    margin: 1rem 0;
}

.office-hours {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.company-details {
    background: var(--background-light);
}

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

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

.info-block h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.info-block p {
    margin-bottom: 0.5rem;
}

.contact-faq {
    background: var(--white);
}

.next-steps {
    background: var(--background-light);
}

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

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

.step-marker {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

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

.thank-you-section {
    padding: 4rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

.next-steps-simple {
    background: var(--background-light);
}

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

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

.next-step-card .step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.legal-content {
    background: var(--white);
}

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

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

.legal-text h3 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-text li {
    list-style: disc;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-text strong {
    color: var(--text-dark);
}

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

    h2 {
        font-size: 2.3rem;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        box-shadow: none;
        padding: 0;
        gap: 2rem;
    }

    .nav-menu li {
        padding: 0;
    }

    .hero {
        padding: 5rem 0;
    }

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

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

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

    .hero-visual {
        display: block;
        margin-top: 3rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .philosophy-text {
        flex: 1;
    }

    .philosophy-visual {
        display: block;
        flex: 0 0 300px;
    }

    .services-showcase {
        flex-direction: row;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .content-text {
        flex: 1;
    }

    .content-visual {
        display: block;
        flex: 0 0 350px;
    }

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

    .about-contact-text {
        flex: 1;
    }

    .about-contact-visual {
        display: block;
        flex: 0 0 300px;
    }

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

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

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

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

    .footer-section {
        flex: 1;
    }

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

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

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

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

    section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .process-step {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .team-member {
        flex: 1 1 calc(25% - 1.5rem);
    }

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