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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

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

/* Header */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.logo:hover {
    color: #1e40af;
}

/* Navigation */
.nav {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #4b5563;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #2563eb;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

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

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

.hero-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #4b5563;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Hero */
.page-hero {
    background-color: #f3f4f6;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e40af;
}

.lead {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-gray {
    background-color: #f9fafb;
}

.section-blue {
    background-color: #2563eb;
    color: #ffffff;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1e40af;
}

.section-title-light {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #ffffff;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-intro-light {
    text-align: center;
    font-size: 1.125rem;
    color: #dbeafe;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-note {
    text-align: center;
    margin-top: 2rem;
    color: #6b7280;
    font-style: italic;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

.btn-primary:hover {
    background-color: #1e40af;
    border-color: #1e40af;
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.btn-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

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

.btn-link {
    color: #2563eb;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Features Grid */
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1e40af;
}

.feature-card p {
    color: #6b7280;
}

/* Content Split */
.content-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.content-split-text {
    flex: 1;
}

.content-split-text h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1e40af;
}

.content-split-text h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: #1e40af;
}

.content-split-text p {
    margin-bottom: 1rem;
    color: #4b5563;
    line-height: 1.75;
}

.content-split-visual {
    flex: 1;
}

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

.service-highlight-card {
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.service-highlight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1e40af;
}

.service-highlight-card p {
    margin-bottom: 1rem;
    color: #6b7280;
}

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

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.value-item p {
    color: #dbeafe;
}

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

.testimonial {
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #fbbf24;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #4b5563;
    line-height: 1.75;
}

.testimonial-author {
    font-weight: 600;
    color: #2563eb;
}

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

.process-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-number {
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.25rem;
    color: #1e40af;
}

.process-step p {
    color: #6b7280;
}

/* Stats Grid */
.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    padding: 2rem;
    background-color: #dbeafe;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

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

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

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

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-icon {
    font-size: 1.5rem;
    color: #2563eb;
    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: 1.25rem;
    color: #4b5563;
    line-height: 1.75;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e40af;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #6b7280;
    line-height: 1.75;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.service-duration,
.service-price {
    font-weight: 600;
    color: #2563eb;
}

/* Included Grid */
.included-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.included-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

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

.included-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1e40af;
}

.included-item p {
    color: #6b7280;
}

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

.contact-info h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #1e40af;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1e40af;
}

.contact-item p {
    color: #4b5563;
    line-height: 1.75;
}

.contact-note {
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-map {
    width: 100%;
}

/* Philosophy Grid */
.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-card {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.philosophy-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1e40af;
}

.philosophy-card p {
    color: #6b7280;
    line-height: 1.75;
}

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

.team-member {
    text-align: center;
}

.team-icon {
    margin: 0 auto 1rem;
    width: 80px;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: #1e40af;
}

.team-role {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.team-member p {
    color: #4b5563;
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto;
}

/* Differentiators */
.differentiators {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

.diff-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1e40af;
}

.diff-item p {
    color: #6b7280;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e7eb;
}

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

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

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

.timeline-content p {
    color: #6b7280;
    line-height: 1.75;
}

/* Partners Grid */
.partners-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.partner-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.partner-item p {
    color: #dbeafe;
}

/* Responsibility */
.responsibility-content {
    max-width: 900px;
    margin: 0 auto;
}

.responsibility-content > p {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    color: #4b5563;
}

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

.responsibility-item {
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #10b981;
}

.responsibility-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1e40af;
}

.responsibility-item p {
    color: #6b7280;
}

/* Company Info */
.company-info {
    max-width: 900px;
    margin: 0 auto;
}

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

.info-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.info-item p {
    color: #dbeafe;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
}

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

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

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

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

/* Thank You Section */
.thank-you-section {
    padding: 6rem 0;
    text-align: center;
}

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

.thank-you-content svg {
    margin: 0 auto 2rem;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e40af;
}

.thank-you-content p {
    margin-bottom: 1rem;
    color: #6b7280;
}

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

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #1e40af;
}

.legal-text h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: #1e40af;
}

.legal-text p {
    margin-bottom: 1rem;
    color: #4b5563;
    line-height: 1.75;
}

.legal-text ul {
    margin: 1rem 0 1rem 2rem;
    color: #4b5563;
}

.legal-text li {
    margin-bottom: 0.5rem;
    line-height: 1.75;
}

.legal-text strong {
    color: #1e40af;
}

/* Cookies Table */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table thead {
    background-color: #f3f4f6;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.cookies-table th {
    font-weight: 600;
    color: #1e40af;
}

.cookies-table td {
    color: #4b5563;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #9ca3af;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.footer-section p {
    line-height: 1.75;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #9ca3af;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #60a5fa;
}

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

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

.modal.show {
    display: flex;
}

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

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

.modal-header h2 {
    font-size: 1.5rem;
    color: #1e40af;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #1f2937;
}

.modal-body {
    padding: 1.5rem;
}

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

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

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

.cookie-option p {
    margin-top: 0.5rem;
    color: #6b7280;
    font-weight: normal;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
    text-align: right;
}

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

    .hero-text {
        font-size: 1.25rem;
    }

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

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

    .content-split {
        flex-direction: row;
    }

    .content-split.reverse {
        flex-direction: row-reverse;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .contact-info,
    .contact-map {
        flex: 1;
    }

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

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

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

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

    .differentiators {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

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

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

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

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

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

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

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

    .footer-section {
        flex: 1;
    }

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

    .cookie-buttons {
        flex-wrap: nowrap;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }

    .nav {
        display: block;
    }

    .features-grid {
        flex-wrap: nowrap;
    }

    .feature-card {
        flex: 1;
    }

    .services-highlight {
        flex-wrap: nowrap;
    }

    .service-highlight-card {
        flex: 1;
    }

    .values-grid {
        flex-wrap: nowrap;
    }

    .value-item {
        flex: 1;
    }

    .testimonials {
        flex-wrap: nowrap;
    }

    .testimonial {
        flex: 1;
    }

    .process-steps {
        flex-wrap: nowrap;
    }

    .process-step {
        flex: 1;
    }

    .stats-grid {
        flex-wrap: nowrap;
    }

    .stat-card {
        flex: 1;
    }

    .differentiators {
        flex-wrap: nowrap;
    }

    .diff-item {
        flex: 1;
    }

    .partners-grid {
        flex-wrap: nowrap;
    }

    .partner-item {
        flex: 1;
    }
}