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

:root {
    --primary-color: #4A90E2;
    --secondary-color: #7B68EE;
    --text-dark: #2C3E50;
    --text-light: #5D6D7E;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E1E8ED;
    --success-color: #27AE60;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

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

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

a:hover {
    color: var(--secondary-color);
}

img, svg {
    max-width: 100%;
    height: auto;
}

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

.nav {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo svg {
    width: 40px;
    height: 40px;
}

.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: var(--text-dark);
    transition: all 0.3s ease;
}

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

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

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

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

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

.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

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

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

.hero-visual {
    display: none;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

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

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

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

section {
    padding: 3rem 0;
}

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

.section-header h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

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

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

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

.intro-item svg {
    margin-bottom: 1rem;
}

.philosophy {
    background: var(--bg-light);
}

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

.philosophy-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.philosophy-visual {
    display: none;
}

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

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

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

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

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

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-light);
}

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

.statistics h2 {
    color: white;
}

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

.stat-item {
    padding: 1.5rem;
}

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

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.industries {
    background: var(--bg-white);
}

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

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

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

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

.industry-item p {
    color: var(--text-light);
}

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

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

.process-step {
    position: relative;
    padding-left: 4rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

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

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

.testimonials {
    background: var(--bg-white);
}

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

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

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

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

.insights {
    background: var(--bg-light);
}

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

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

.insight-item p {
    color: var(--text-light);
}

.values {
    background: var(--bg-white);
}

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

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

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

.value-card p {
    color: var(--text-light);
}

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

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

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

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

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

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

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

.cta h2, .cta-final h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p, .cta-final p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

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

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

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

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
}

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

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

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

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

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

.cookie-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

.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: 1rem;
}

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

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

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

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

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

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

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 1.75rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.cookie-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.page-hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 3rem 0;
    text-align: center;
}

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

.lead {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.story {
    background: var(--bg-white);
}

.story-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.mission-vision {
    background: var(--bg-light);
}

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

.mission-box,
.vision-box {
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.mission-box p,
.vision-box p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

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

.team-member {
    text-align: center;
    padding: 1.5rem;
}

.member-icon {
    margin-bottom: 1rem;
}

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

.team-member p {
    color: var(--text-light);
}

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

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

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

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

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

.value-content p {
    color: var(--text-light);
}

.achievements {
    background: var(--bg-white);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
}

.timeline-year {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
}

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

.timeline-content p {
    color: var(--text-light);
}

.approach {
    background: var(--bg-light);
}

.approach-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

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

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

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

.benefit-card p {
    color: var(--text-light);
}

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

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.services-intro p {
    color: var(--text-light);
    max-width: 800px;
    margin: 1rem auto 0;
}

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

.service-detail {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

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

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

.service-title-block h3 {
    margin-bottom: 0.5rem;
}

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

.service-description p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

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

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

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

.benefit-block p {
    color: var(--text-light);
}

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

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

.process-phase {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    position: relative;
    padding-left: 4rem;
}

.phase-marker {
    position: absolute;
    left: 1rem;
    top: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.process-phase h3 {
    margin-bottom: 0.75rem;
}

.process-phase p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.phase-duration {
    display: inline-block;
    background: var(--bg-light);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: var(--primary-color);
}

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

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

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.contact-item p {
    color: var(--text-light);
}

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

.contact-visual {
    display: none;
}

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

.location-description h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.location-description p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.company-info {
    background: var(--bg-white);
}

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

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

.info-card h3 {
    margin-bottom: 0.75rem;
}

.info-card p {
    color: var(--text-light);
}

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

.response-time {
    background: var(--bg-white);
}

.response-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

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

.response-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.response-item p {
    color: var(--text-light);
}

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

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

.step-box {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    position: relative;
    padding-left: 4rem;
}

.step-num {
    position: absolute;
    left: 1rem;
    top: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

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

.step-box p {
    color: var(--text-light);
}

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

.cta-contact h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-contact p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

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

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    margin-bottom: 1.5rem;
}

.thank-you-message {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.next-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.next-info h2 {
    margin-bottom: 1rem;
}

.next-info p {
    color: var(--text-light);
}

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

.while-waiting {
    background: var(--bg-light);
}

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

.waiting-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
}

.waiting-card h3 {
    margin-bottom: 0.75rem;
}

.waiting-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

.legal-page {
    background: var(--bg-white);
    padding: 3rem 0;
}

.legal-page h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.legal-content {
    max-width: 900px;
}

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

.legal-section h2 {
    margin-bottom: 1rem;
}

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

.legal-section p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.legal-section ul {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--text-light);
}

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

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

.cookie-table {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.cookie-table h3 {
    margin-bottom: 1rem;
}

.cookie-table p {
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }

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

    .nav-menu li {
        padding: 0;
    }

    .hero {
        padding: 5rem 0;
    }

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

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

    .hero-text {
        margin-left: 0;
    }

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

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

    .intro-item {
        flex: 1;
        min-width: 250px;
    }

    .philosophy-content {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

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

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

    .service-card {
        flex: 1;
        min-width: 250px;
    }

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

    .stat-item {
        flex: 1;
        min-width: 200px;
    }

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

    .industry-item {
        flex: 1;
        min-width: 300px;
    }

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

    .process-step {
        flex: 1;
        min-width: 250px;
    }

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

    .testimonial {
        flex: 1;
        min-width: 300px;
    }

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

    .insight-item {
        flex: 1;
        min-width: 300px;
    }

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

    .value-card {
        flex: 1;
        min-width: 250px;
    }

    .cookie-buttons {
        flex-direction: row;
        justify-content: center;
    }

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

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .mission-vision-grid {
        flex-direction: row;
    }

    .mission-box,
    .vision-box {
        flex: 1;
    }

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

    .team-member {
        flex: 1;
        min-width: 250px;
    }

    .value-item {
        flex-direction: row;
    }

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

    .benefit-card {
        flex: 1;
        min-width: 300px;
    }

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

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

    .benefit-block {
        flex: 1;
        min-width: 250px;
    }

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

    .contact-details {
        flex: 1;
    }

    .contact-visual {
        display: block;
        flex: 1;
    }

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

    .info-card {
        flex: 1;
    }

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

    .response-item {
        flex: 1;
    }

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

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

    .waiting-card {
        flex: 1;
    }

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

    .footer-section {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 2.25rem;
    }
}