:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #64748b;
    --text-color: #1e293b;
    --text-light: #475569;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

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

.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(--primary-dark);
}

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

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

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

.logo a {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
}

.main-nav ul {
    display: none;
    list-style: none;
}

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

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

.main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    transition: left 0.3s ease;
    padding: 2rem;
    z-index: 2000;
}

.main-nav.active {
    left: 0;
}

.main-nav ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

.hero-cta {
    margin-top: 2rem;
}

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

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

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

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

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

.btn-text {
    background: none;
    color: var(--text-light);
    padding: 0.5rem 1rem;
}

.btn-text:hover {
    color: var(--text-color);
}

section {
    padding: 3rem 0;
}

section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

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

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

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

.philosophy-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.company-story {
    padding: 4rem 0;
}

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

.story-visual {
    width: 100%;
}

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

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

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

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

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

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

.statistics {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0;
}

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

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

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

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

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

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

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

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

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

.testimonials {
    padding: 4rem 0;
}

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

.testimonial {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.testimonial-text {
    margin-bottom: 1rem;
}

.testimonial-text p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

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

.industries-intro {
    text-align: center;
    margin-bottom: 2rem;
}

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

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

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

.benefits {
    padding: 4rem 0;
}

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

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

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

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

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

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

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

.faq-icon {
    font-size: 1.5rem;
    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;
    line-height: 1.7;
    color: var(--text-light);
}

.trust-indicators {
    padding: 4rem 0;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
}

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

.trust-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

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

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

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

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

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

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

.footer-section h3 {
    font-size: 1.125rem;
    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.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-color);
    color: white;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 1100;
    display: none;
}

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

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

.cookie-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.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-color: rgba(0, 0, 0, 0.5);
    z-index: 1200;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

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

.modal-content {
    background-color: white;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

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

.modal-body {
    padding: 1.5rem;
}

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

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.category-header h3 {
    margin: 0;
    font-size: 1.125rem;
}

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

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

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

.about-intro,
.services-intro,
.contact-intro {
    padding: 2rem 0;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

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

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

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

.mission-block,
.vision-block {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
}

.values {
    padding: 4rem 0;
}

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

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

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

.value-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

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

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

.team-member {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
}

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

.methodology {
    padding: 4rem 0;
}

.methodology-principles {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.principle {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

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

.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.achievement-item {
    text-align: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
}

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

.approach-difference {
    padding: 4rem 0;
}

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

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

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

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

.cta-section h2 {
    color: white;
}

.services-list {
    padding: 3rem 0;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.service-detail {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.service-detail h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-duration {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.service-features {
    list-style: none;
    margin-top: 1rem;
}

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

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

.service-benefits {
    background-color: var(--bg-light);
    padding: 3rem 0;
}

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

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
}

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

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

.booking-process {
    padding: 4rem 0;
}

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

.contact-main {
    padding: 3rem 0;
}

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

.info-block {
    margin-bottom: 2rem;
}

.info-block h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    text-align: left;
}

.info-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

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

.detail-block h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: left;
}

.detail-block ul {
    margin-left: 1.5rem;
    margin-top: 0.75rem;
}

.detail-block ul li {
    margin-bottom: 0.5rem;
}

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

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

.company-details {
    max-width: 800px;
    margin: 2rem auto 0;
}

.company-details p {
    margin-bottom: 0.75rem;
}

.thank-you-hero {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

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

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

.thank-you-message {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.next-steps {
    padding: 4rem 0;
}

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

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

.step-card .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

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

.waiting-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.option-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
}

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

.option-card .btn {
    margin-top: 1.5rem;
}

.contact-reminder {
    padding: 4rem 0;
    text-align: center;
}

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

.email-large {
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

.legal-page {
    padding: 3rem 0;
}

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

.last-updated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-content {
    max-width: 900px;
    margin: 2rem auto;
}

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

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

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

.legal-section h4 {
    font-size: 1.125rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

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

.cookie-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
}

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

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
}

#openCookieSettings {
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }

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

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

    .main-nav {
        position: static;
        width: auto;
        height: auto;
        max-width: none;
        padding: 0;
        box-shadow: none;
        background: none;
    }

    .main-nav ul {
        display: flex;
        flex-direction: row;
        gap: 2rem;
    }

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

    .story-layout {
        flex-direction: row;
        align-items: center;
    }

    .story-text {
        flex: 1;
    }

    .story-visual {
        flex: 1;
    }

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

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

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

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

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

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

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

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

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        max-width: none;
    }

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

    .footer-section {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

    .service-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

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

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

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

    .contact-info {
        flex: 1;
    }

    .contact-details {
        flex: 1;
    }

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

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

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

    .option-card {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 4rem 0;
    }

    .hero {
        padding: 6rem 0;
    }

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

    section h2 {
        font-size: 2.25rem;
    }

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

    .philosophy-item {
        flex: 1;
    }

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

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

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

    .stat-item {
        flex: 1;
    }

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

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

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

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

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

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

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

    .achievement-item {
        flex: 1 1 calc(16.666% - 1.75rem);
    }

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

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