/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-wcbvsrjmw1] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-wcbvsrjmw1] {
    flex: 1;
}

.sidebar[b-wcbvsrjmw1] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-wcbvsrjmw1] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-wcbvsrjmw1]  a, .top-row[b-wcbvsrjmw1]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-wcbvsrjmw1]  a:hover, .top-row[b-wcbvsrjmw1]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-wcbvsrjmw1]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-wcbvsrjmw1] {
        justify-content: space-between;
    }

    .top-row[b-wcbvsrjmw1]  a, .top-row[b-wcbvsrjmw1]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-wcbvsrjmw1] {
        flex-direction: row;
    }

    .sidebar[b-wcbvsrjmw1] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-wcbvsrjmw1] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-wcbvsrjmw1]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-wcbvsrjmw1], article[b-wcbvsrjmw1] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-wcbvsrjmw1] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-wcbvsrjmw1] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Pages/Home.razor.rz.scp.css */
/* Modern, clean design for TIFS Rally Landing Page */

:global(body)[b-q8qq4df1d3] {
    margin: 0;
    color: #111827;
    background: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

/* ===== POPUP MODAL ===== */
.popup-overlay[b-q8qq4df1d3] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.popup[b-q8qq4df1d3] {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupIn-b-q8qq4df1d3 0.3s ease-out;
}

@keyframes popupIn-b-q8qq4df1d3 {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup__close[b-q8qq4df1d3] {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .popup__close:hover[b-q8qq4df1d3] {
        background: #e5e7eb;
        color: #111827;
    }

.popup__icon[b-q8qq4df1d3] {
    font-size: 48px;
    margin-bottom: 16px;
}

.popup__title[b-q8qq4df1d3] {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #111827;
}

.popup__text[b-q8qq4df1d3] {
    font-size: 15px;
    color: #6b7280;
    margin: 0 0 24px;
    line-height: 1.6;
}

    .popup__text strong[b-q8qq4df1d3] {
        color: #2563eb;
    }

.popup__steps[b-q8qq4df1d3] {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.popup__step[b-q8qq4df1d3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
}

.popup__step-num[b-q8qq4df1d3] {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.popup__actions[b-q8qq4df1d3] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popup__hint[b-q8qq4df1d3] {
    margin: 16px 0 0;
    font-size: 12px;
    color: #9ca3af;
}

.page[b-q8qq4df1d3] {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --accent: #f59e0b;
    --text: #111827;
    --text-muted: #6b7280;
    --bg: #ffffff;
    --bg-soft: #f9fafb;
    --border: #e5e7eb;
    --radius: 8px;
}

/* ===== HEADER ===== */
.header[b-q8qq4df1d3] {
    border-bottom: 1px solid var(--border);
}

.header__inner[b-q8qq4df1d3] {
    max-width: 960px;
    margin: 0 auto;
    padding: 8px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo[b-q8qq4df1d3] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo__icon[b-q8qq4df1d3] {
    width: 64px; /* oder % / clamp(...) */
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 8px;
}

    .logo__icon > img[b-q8qq4df1d3] {
        width: 100%;
        height: 100%;
        object-fit: contain; /* alles sichtbar, ggf. freie R�nder */
        display: block; /* entfernt inline-gap */
    }

.logo__icon_sq[b-q8qq4df1d3] {
    width: 96px; /* oder % / clamp(...) */
    display: grid;
    place-items: center;
    border-radius: 8px;
    /* width: 48px;
    height: 48px;*/
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    flex-shrink: 0;
    height: 100%;
}

    .logo__icon_sq > img[b-q8qq4df1d3] {
        width: 100%;
        height: 100%;
        object-fit: contain; /* alles sichtbar, ggf. freie R�nder */
        display: block; /* entfernt inline-gap */
    }


.logo_text_container[b-q8qq4df1d3] {
    display: flex;
    flex-direction: column;
}

.logo__text[b-q8qq4df1d3] {
    font-weight: 700;
    font-size: 18px;
    color: var(--text);
    text-align: center;
}

.logo__subtext[b-q8qq4df1d3] {
    font-weight: 500;
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

.header__event[b-q8qq4df1d3] {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== BUTTONS ===== */
.btn[b-q8qq4df1d3] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.15s ease;
    cursor: pointer;
    border: none;
}

.btn--large[b-q8qq4df1d3] {
    padding: 14px 28px;
    font-size: 15px;
}

.btn--primary[b-q8qq4df1d3] {
    background: var(--primary);
    color: #000;
}

    .btn--primary:hover[b-q8qq4df1d3] {
        background: var(--primary-dark);
    }

.btn--outline[b-q8qq4df1d3] {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text);
}

    .btn--outline:hover[b-q8qq4df1d3] {
        border-color: var(--text);
        background: var(--bg-soft);
    }

.btn__icon[b-q8qq4df1d3] {
    font-size: 18px;
}

/* ===== HERO ===== */
.hero[b-q8qq4df1d3] {
    position: relative;
    text-align: center;
    padding: 80px 24px 64px;
    margin: 0 auto;
    overflow: hidden; /* wichtig f�rs Overlay */
}

    .hero[b-q8qq4df1d3]::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url('/img/heroimage.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 0;
        filter: brightness(0.7);
        opacity: 0.4;
    }

    .hero > *[b-q8qq4df1d3] {
        position: relative;
        z-index: 1; /* Inhalt �ber dem Background */
    }

.hero__badge[b-q8qq4df1d3] {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.hero__title[b-q8qq4df1d3] {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.highlight[b-q8qq4df1d3] {
    background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle[b-q8qq4df1d3] {
    font-size: 18px;
    color: var(--text-muted);
    margin: 0 0 32px;
    line-height: 1.6;
}

.hero__cta[b-q8qq4df1d3] {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RALLY SECTION ===== */
.rally[b-q8qq4df1d3] {
    background: var(--bg-soft);
    padding: 64px 24px;
}

.rally__header[b-q8qq4df1d3] {
    text-align: center;
    margin-bottom: 48px;
}

    .rally__header h2[b-q8qq4df1d3] {
        font-size: 28px;
        font-weight: 700;
        margin: 0 0 8px;
    }

    .rally__header p[b-q8qq4df1d3] {
        color: var(--text-muted);
        margin: 0;
        font-size: 16px;
    }

.steps[b-q8qq4df1d3] {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step[b-q8qq4df1d3] {
    text-align: center;
}

.step__num[b-q8qq4df1d3] {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 16px;
}

.step__content h3[b-q8qq4df1d3] {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
}

.step__content p[b-q8qq4df1d3] {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.rally__note[b-q8qq4df1d3] {
    max-width: 600px;
    margin: 48px auto 0;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

.rally__note-icon[b-q8qq4df1d3] {
    font-size: 18px;
    flex-shrink: 0;
}

/* ===== ABOUT / SYNERGIE ===== */
.about[b-q8qq4df1d3] {
    /*padding: 64px 24px;*/
    /*overflow: hidden;*/
    display: flex;
    flex-direction: row;
    position: relative;
    text-align: center;
    padding: 80px 24px 64px;
    margin: 0 auto;
    overflow: hidden; /* wichtig f�rs Overlay */
}


    .about[b-q8qq4df1d3]::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url('/img/heroimage.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 0;
        filter: brightness(0.7);
        opacity: 0.4;
    }

    .about > *[b-q8qq4df1d3] {
        position: relative;
        z-index: 1; /* Inhalt �ber dem Background */
    }


.about__inner[b-q8qq4df1d3] {
    max-width: 800px;
    margin: 0 auto;
}

.about__header[b-q8qq4df1d3] {
    text-align: center;
    margin-bottom: 48px;
}

    .about__header h2[b-q8qq4df1d3] {
        font-size: 28px;
        font-weight: 700;
        margin: 0 0 8px;
    }

    .about__header p[b-q8qq4df1d3] {
        color: var(--text-muted);
        margin: 0;
        font-size: 16px;
        max-width: 520px;
        margin: 0 auto;
    }

.about__grid[b-q8qq4df1d3] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.about__card[b-q8qq4df1d3] {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--bg-soft);
    border-radius: 12px;
}

.about__logo[b-q8qq4df1d3] {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    flex-shrink: 0;
}

.about__logo--blue[b-q8qq4df1d3] {
    background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 100%);
    color: #fff;
}

.about__logo--orange[b-q8qq4df1d3] {
    background: linear-gradient(135deg, var(--accent) 0%, #fbbf24 100%);
    color: #fff;
}

.about__content[b-q8qq4df1d3] {
}

    .about__content h3[b-q8qq4df1d3] {
        font-size: 16px;
        font-weight: 600;
        margin: 0 0 8px;
    }

    .about__content p[b-q8qq4df1d3] {
        font-size: 14px;
        color: var(--text-muted);
        margin: 0;
        line-height: 1.6;
    }

.synergy[b-q8qq4df1d3] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: left;
}

.synergy__icon[b-q8qq4df1d3] {
    font-size: 24px;
    flex-shrink: 0;
}

.synergy__content[b-q8qq4df1d3] {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
}

    .synergy__content strong[b-q8qq4df1d3] {
        color: var(--primary);
    }

/* ===== PRODUCTS ===== */
.products[b-q8qq4df1d3] {
    padding: 64px 24px;
}

.products__header[b-q8qq4df1d3] {
    text-align: center;
    margin-bottom: 48px;
}

    .products__header h2[b-q8qq4df1d3] {
        font-size: 28px;
        font-weight: 700;
        margin: 0 0 8px;
    }

    .products__header p[b-q8qq4df1d3] {
        color: var(--text-muted);
        margin: 0;
        font-size: 16px;
    }

.product-grid[b-q8qq4df1d3] {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.product[b-q8qq4df1d3] {
    padding: 28px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
}

.product--blue[b-q8qq4df1d3] {
    border-top: 3px solid var(--primary);
}

.product--orange[b-q8qq4df1d3] {
    border-top: 3px solid var(--accent);
}

.product__badge[b-q8qq4df1d3] {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.product h3[b-q8qq4df1d3] {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
}

.product p[b-q8qq4df1d3] {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0 0 16px;
    line-height: 1.6;
}

.product ul[b-q8qq4df1d3] {
    margin: 0 0 20px;
    padding-left: 18px;
    font-size: 14px;
}

.product li[b-q8qq4df1d3] {
    margin: 6px 0;
    color: var(--text);
}

.product__link[b-q8qq4df1d3] {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

    .product__link:hover[b-q8qq4df1d3] {
        text-decoration: underline;
    }

/* ===== TIFS SECTION ===== */
/*.tifs-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
    color: #fff;
}*/




.tifs-section[b-q8qq4df1d3] {
    /*padding: 64px 24px;*/
    /*overflow: hidden;*/
    position: relative;
    text-align: center;
    /*padding: 80px 24px 64px;*/
    margin: 0 auto;
    overflow: hidden; /* wichtig f�rs Overlay */
}


    .tifs-section[b-q8qq4df1d3]::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url('/img/heroimage.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 0;
        filter: brightness(0.7);
        opacity: 0.4;
    }

    .tifs-section > *[b-q8qq4df1d3] {
        position: relative;
        z-index: 1; /* Inhalt �ber dem Background */
    }


.tifs-banner[b-q8qq4df1d3] {
    width: 100%;
    overflow: hidden;
}

    .tifs-banner img[b-q8qq4df1d3] {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        max-height: 400px;
    }

.tifs-inner[b-q8qq4df1d3] {
    max-width: 900px;
    margin: 0 auto;
    padding: 64px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.tifs-badge[b-q8qq4df1d3] {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.tifs-content h2[b-q8qq4df1d3] {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.2;
}

.tifs-content > p[b-q8qq4df1d3] {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0 0 24px;
}

.tifs-features[b-q8qq4df1d3] {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

    .tifs-features li[b-q8qq4df1d3] {
        font-size: 14px;
        padding: 6px 0;
        opacity: 0.9;
    }

.tifs-cta[b-q8qq4df1d3] {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tifs-section .btn--primary[b-q8qq4df1d3] {
    background: #fff;
    color: #1e3a5f;
}

    .tifs-section .btn--primary:hover[b-q8qq4df1d3] {
        background: #f0f0f0;
    }

.tifs-section .btn--outline[b-q8qq4df1d3] {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

    .tifs-section .btn--outline:hover[b-q8qq4df1d3] {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.6);
    }

.tifs-video[b-q8qq4df1d3] {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tifs-video-player[b-q8qq4df1d3] {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    aspect-ratio: 16 / 9;
    background: #000;
}

/* ===== CONTACT ===== */
.contact[b-q8qq4df1d3] {
    background: var(--bg-soft);
    padding: 64px 24px;
}

.contact__inner[b-q8qq4df1d3] {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact__info h2[b-q8qq4df1d3] {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px;
}

.contact__info > p[b-q8qq4df1d3] {
    color: var(--text-muted);
    margin: 0 0 32px;
    font-size: 16px;
}

.contact__companies[b-q8qq4df1d3] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.company[b-q8qq4df1d3] {
    padding: 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .company strong[b-q8qq4df1d3] {
        font-size: 15px;
        color: var(--text);
    }

    .company span[b-q8qq4df1d3] {
        font-size: 13px;
        color: var(--text-muted);
    }

.contact__action[b-q8qq4df1d3] {
    margin-top: 8px;
}

/* ===== FOOTER ===== */
.footer[b-q8qq4df1d3] {
    border-top: 1px solid var(--border);
    padding: 24px;
}

.footer__inner[b-q8qq4df1d3] {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__brand[b-q8qq4df1d3] {
    font-size: 13px;
    color: var(--text-muted);
}

.footer__links[b-q8qq4df1d3] {
    display: flex;
    gap: 20px;
}

    .footer__links a[b-q8qq4df1d3] {
        font-size: 13px;
        color: var(--text-muted);
        text-decoration: none;
    }

        .footer__links a:hover[b-q8qq4df1d3] {
            color: var(--text);
        }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero[b-q8qq4df1d3] {
        padding: 48px 20px 40px;
    }

    .hero__title[b-q8qq4df1d3] {
        font-size: 28px;
    }

    .hero__subtitle[b-q8qq4df1d3] {
        font-size: 16px;
    }

    .steps[b-q8qq4df1d3] {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about__grid[b-q8qq4df1d3],
    .product-grid[b-q8qq4df1d3],
    .contact__companies[b-q8qq4df1d3] {
        grid-template-columns: 1fr;
    }

    .tifs-inner[b-q8qq4df1d3] {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .tifs-video[b-q8qq4df1d3] {
        order: -1;
    }

    .tifs-cta[b-q8qq4df1d3] {
        justify-content: center;
    }

    .tifs-banner img[b-q8qq4df1d3] {
        max-height: 250px;
    }

    .about__card[b-q8qq4df1d3] {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .about__logo[b-q8qq4df1d3] {
        margin: 0 auto;
    }

    .logo__icon_sq[b-q8qq4df1d3] {
        width: 72px;
        height: 72px;
        margin: 0 auto 16px;
    }

    .about__content[b-q8qq4df1d3] {
        width: 100%;
    }

    .about__content h3[b-q8qq4df1d3] {
        text-align: center;
    }

    .about__content p[b-q8qq4df1d3] {
        text-align: center;
    }

    .synergy[b-q8qq4df1d3] {
        flex-direction: column;
        text-align: center;
    }

    .synergy__icon[b-q8qq4df1d3] {
        margin: 0 auto;
    }

    .header__event[b-q8qq4df1d3] {
        display: none;
    }

    .footer__inner[b-q8qq4df1d3] {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
