/* Reset и базовые стили */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Inter', Arial, sans-serif;
    color: #222;
    background: #f7f7f9;
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}

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

/* Header */
.site-header {
    background: #fff;
    box-shadow: 0 2px 8px 0 rgba(30,40,90,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo img {
    height: 44px;
    display: block;
}

.main-nav ul {
    display: flex;
    gap: 34px;
    list-style: none;
}

.main-nav a {
    display: block;
    padding: 7px 0;
    font-weight: 500;
    font-size: 1.07rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.18s;
}

.main-nav a:hover,
.main-nav a:focus {
    color: #2878de;
    border-bottom: 2px solid #2878de;
}

/* Бургер-меню для мобильных */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 12px;
    justify-content: center;
}
.menu-toggle span {
    height: 3px;
    width: 100%;
    background: #222;
    border-radius: 2px;
    display: block;
}

@media (max-width: 900px) {
    .header-flex {
        padding: 0 10px;
        height: 58px;
    }
    .main-nav ul {
        gap: 22px;
    }
    .logo img {
        height: 38px;
    }
}

@media (max-width: 650px) {
    .main-nav {
        position: absolute;
        top: 58px;
        right: 0;
        left: 0;
        background: #fff;
        box-shadow: 0 6px 16px 0 rgba(0,0,0,0.06);
        flex-direction: column;
        width: 100vw;
        transform: translateY(-120%);
        transition: transform .25s;
        z-index: 100;
    }
    .main-nav.open {
        transform: translateY(0);
    }
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    .main-nav li {
        border-bottom: 1px solid #eee;
        width: 100%;
    }
    .main-nav a {
        padding: 18px 0;
        font-size: 1.09rem;
        text-align: center;
        border-bottom: none;
    }
    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 450px) {
    .logo img {
        height: 28px;
    }
    .container {
        padding: 0 5px;
    }
}
.site-footer {
    background: #222;
    color: #f7f7f9;
    padding: 44px 0 0 0;
    font-size: 1rem;
}

.footer-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 18px;
    border-bottom: 1px solid #373737;
}

.footer-logo img {
    height: 36px;
    filter: brightness(1.1);
}

.footer-nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
}

.footer-nav a {
    color: #f7f7f9;
    opacity: 0.93;
    font-weight: 400;
    transition: opacity .18s;
}
.footer-nav a:hover,
.footer-nav a:focus {
    opacity: 1;
    text-decoration: underline;
}

.footer-contacts a {
    color: #b7e1ff;
    text-decoration: underline;
    font-size: 0.99rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 0 18px 0;
    font-size: 0.97rem;
    color: #bbb;
}

.footer-dev a {
    color: #66b2ff;
    text-decoration: underline;
    font-size: 0.98rem;
}

@media (max-width: 900px) {
    .footer-flex {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    .footer-nav ul {
        gap: 20px;
        flex-wrap: wrap;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}

@media (max-width: 550px) {
    .footer-flex {
        gap: 10px;
        padding-bottom: 12px;
    }
    .footer-nav ul {
        gap: 13px;
    }
    .footer-logo img {
        height: 25px;
    }
    .footer-bottom {
        font-size: 0.92rem;
        padding: 12px 0 10px 0;
    }
}
.hero {
    background: linear-gradient(100deg, #d0e8fc 70%, #e8f7fd 100%);
    padding: 52px 0 60px 0;
}
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
}
.hero-text h1 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #222;
    line-height: 1.15;
}
.hero-text p {
    font-size: 1.22rem;
    margin-bottom: 28px;
    color: #333;
}
.hero-img img {
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 2px 18px 0 rgba(60,120,190,0.07);
}
.btn {
    display: inline-block;
    border-radius: 7px;
    padding: 11px 30px;
    font-size: 1.08rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    border: none;
    outline: none;
    background: #2878de;
    color: #fff;
    transition: background .19s, color .19s;
    text-decoration: none;
}
.btn:hover, .btn:focus {
    background: #1657a5;
}
.btn-outline {
    background: #fff;
    color: #2878de;
    border: 2px solid #2878de;
}
.btn-outline:hover, .btn-outline:focus {
    background: #2878de;
    color: #fff;
}

.advantages {
    padding: 54px 0 30px 0;
    background: #fff;
}
.advantages h2 {
    font-size: 2rem;
    margin-bottom: 32px;
    text-align: center;
}
.adv-list {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.adv-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 120px;
    max-width: 160px;
    text-align: center;
}
.adv-item img {
    width: 64px;
    height: 64px;
}

.section-title {
    background: #f2f6fb;
    padding: 52px 0 45px 0;
}
.section-title h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 28px;
}
.categories {
    display: flex;
    gap: 36px;
    justify-content: center;
    flex-wrap: wrap;
}
.cat-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 14px 0 rgba(44,110,180,0.08);
    padding: 18px 22px 15px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 140px;
    max-width: 170px;
    transition: box-shadow .18s, transform .18s;
}
.cat-card:hover, .cat-card:focus {
    box-shadow: 0 4px 28px 0 rgba(44,110,180,0.18);
    transform: translateY(-2px) scale(1.04);
}
.cat-card img {
    height: 74px;
    margin-bottom: 8px;
}

.tips {
    padding: 48px 0 32px 0;
}
.tips h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 23px;
}
.tips-list {
    max-width: 780px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: #3d4e66;
    list-style: disc inside;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.brands {
    background: #fff;
    padding: 44px 0 30px 0;
}
.brands h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 26px;
}
.brands-row {
    display: flex;
    gap: 38px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.brands-row img {
    height: 48px;
    filter: grayscale(0.2) brightness(1.1);
    opacity: 0.86;
    transition: filter .16s, opacity .16s;
}
.brands-row img:hover, .brands-row img:focus {
    filter: none;
    opacity: 1;
}

.about-bikes {
    padding: 48px 0 36px 0;
    background: #f6fbff;
}
.about-flex {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.about-img img {
    max-width: 320px;
    border-radius: 14px;
    box-shadow: 0 2px 16px 0 rgba(30,60,90,0.07);
}
.about-text h2 {
    font-size: 1.65rem;
    margin-bottom: 16px;
}
.about-text p {
    margin-bottom: 12px;
    font-size: 1.08rem;
    color: #405080;
}

.faq {
    background: #fff;
    padding: 46px 0 30px 0;
}
.faq h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    text-align: center;
}
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: space-between;
}
.faq-item {
    background: #f2f6fb;
    border-radius: 11px;
    padding: 18px 22px;
    flex: 1 1 260px;
    min-width: 260px;
}
.faq-item h3 {
    font-size: 1.11rem;
    margin-bottom: 9px;
    color: #2878de;
}

.cta-buy {
    background: linear-gradient(90deg, #e7f1fa 60%, #d4e8fc 100%);
    padding: 48px 0 38px 0;
}
.cta-content {
    display: flex;
    align-items: center;
    gap: 52px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.cta-text h2 {
    font-size: 1.63rem;
    margin-bottom: 13px;
}
.cta-img img {
    max-width: 240px;
    border-radius: 11px;
    box-shadow: 0 2px 14px 0 rgba(44,110,180,0.09);
}

.contact-form {
    background: #fff;
    padding: 38px 0 42px 0;
}
.contact-form h2 {
    text-align: center;
    margin-bottom: 16px;
}
.form-simple {
    max-width: 440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-simple input, .form-simple textarea {
    padding: 11px 13px;
    border-radius: 6px;
    border: 1px solid #ccd6eb;
    font-size: 1rem;
    font-family: inherit;
    background: #f7f7f9;
    color: #222;
    resize: vertical;
}
.form-simple input:focus, .form-simple textarea:focus {
    outline: 2px solid #2878de;
}
.form-simple button {
    width: 100%;
    margin-top: 6px;
}

/* Адаптив */
@media (max-width: 1100px) {
    .hero-content, .about-flex, .cta-content {
        flex-direction: column;
        gap: 34px;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    .about-img img {
        margin-bottom: 13px;
    }
    .cta-img img {
        margin-bottom: 13px;
    }
}

@media (max-width: 750px) {
    .hero-text h1 {
        font-size: 1.85rem;
    }
    .advantages h2,
    .brands h2,
    .faq h2,
    .tips h2,
    .about-text h2,
    .section-title h2 {
        font-size: 1.38rem;
    }
    .adv-list {
        gap: 20px;
    }
    .categories {
        gap: 14px;
    }
    .faq-list {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        gap: 14px;
    }
    .hero-img img, .about-img img, .cta-img img {
        max-width: 100%;
        height: auto;
    }
    .adv-item img {
        width: 38px;
        height: 38px;
    }
    .cat-card img {
        height: 38px;
    }
    .brands-row img {
        height: 28px;
    }
}
.adv-item svg {
    display: block;
    margin: 0 auto 7px auto;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
}
@media (max-width: 750px) {
    .adv-item svg {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
    }
}
.cat-card svg {
    display: block;
    margin: 0 auto 9px auto;
    width: 60px;
    height: 60px;
    min-width: 44px;
    min-height: 44px;
    transition: transform .18s;
}
.cat-card:hover svg,
.cat-card:focus svg {
    transform: scale(1.08) rotate(-3deg);
}
@media (max-width: 750px) {
    .cat-card svg {
        width: 38px;
        height: 38px;
        min-width: 32px;
        min-height: 32px;
    }
}
.catalog-hero {
    background: #f6fbff;
    padding: 42px 0 22px 0;
}
.catalog-hero-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 34px;
    flex-wrap: wrap;
}
.catalog-hero h1 {
    font-size: 2.1rem;
    margin-bottom: 12px;
}
.catalog-lead {
    font-size: 1.15rem;
    color: #365;
    margin-bottom: 0;
}
.catalog-filters .filters-form {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: flex-end;
    background: #fff;
    border-radius: 11px;
    box-shadow: 0 2px 14px 0 rgba(44,110,180,0.06);
    padding: 18px 16px;
}
.filters-form label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 1rem;
    font-weight: 500;
    color: #222;
}
.filters-form span {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.99rem;
}
.filters-form select {
    padding: 6px 8px;
    border-radius: 6px;
    border: 1px solid #ccd6eb;
    background: #f6fbff;
    font-size: 1rem;
    font-family: inherit;
}
.filter-btn {
    margin-left: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.catalog-list-section {
    background: #fff;
    padding: 40px 0 18px 0;
}
.catalog-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
}
.bike-card {
    background: #f7fafd;
    border-radius: 15px;
    box-shadow: 0 2px 14px 0 rgba(30,40,90,0.06);
    padding: 22px 20px 18px 20px;
    width: 280px;
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow .18s, transform .18s;
}
.bike-card:hover, .bike-card:focus-within {
    box-shadow: 0 5px 26px 0 rgba(44,110,180,0.18);
    transform: translateY(-2px) scale(1.03);
}
.bike-img img {
    display: block;
    margin: 0 auto 11px auto;
    width: 100%;
    max-width: 240px;
    border-radius: 9px;
}
.bike-card h2 {
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    text-align: center;
    min-height: 48px;
}
.bike-props {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
    width: 100%;
}
.bike-props li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #426;
    font-size: 0.98rem;
    list-style: none;
}
.bike-props svg {
    min-width: 18px;
    min-height: 18px;
    display: inline-block;
}
.bike-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
    gap: 14px;
}
.bike-price {
    font-size: 1.16rem;
    font-weight: 700;
    color: #2878de;
}
.catalog-info {
    margin-top: 38px;
    color: #222;
    font-size: 1.03rem;
    max-width: 720px;
}
.catalog-note {
    color: #5c6c7e;
    font-size: 0.97rem;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 6px;
}

@media (max-width: 1050px) {
    .catalog-list {
        justify-content: center;
    }
    .bike-card {
        width: 320px;
        max-width: 96vw;
    }
}
@media (max-width: 750px) {
    .catalog-hero-flex {
        flex-direction: column;
        gap: 18px;
    }
    .catalog-filters .filters-form {
        flex-direction: column;
        align-items: stretch;
        gap: 9px;
        padding: 13px 6px;
    }
    .bike-card {
        width: 98vw;
        max-width: 98vw;
    }
}
.about-bike-hero {
    background: linear-gradient(90deg, #e7f1fa 60%, #d4e8fc 100%);
    padding: 52px 0 36px 0;
}
.about-bike-hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    flex-wrap: wrap;
}
.about-bike-hero-text h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.16;
}
.about-bike-hero-img img {
    max-width: 330px;
    border-radius: 14px;
    box-shadow: 0 2px 16px 0 rgba(30,60,90,0.10);
}

.history-block {
    background: #fff;
    padding: 46px 0 36px 0;
}
.history-block h2 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 30px;
}
.history-row {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.history-item {
    background: #f2f6fb;
    border-radius: 11px;
    padding: 18px 16px 14px 16px;
    text-align: center;
    max-width: 230px;
    flex: 1 1 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.history-item svg {
    margin-bottom: 12px;
}
.history-item h3 {
    font-size: 1.07rem;
    color: #2878de;
    margin-bottom: 8px;
}
.history-item p {
    font-size: 0.98rem;
    color: #34496c;
}

.evolution-steps {
    background: #f6fbff;
    padding: 44px 0 28px 0;
}
.evolution-steps h2 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 24px;
}
.evo-steps-list {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}
.evo-step {
    background: #fff;
    border-radius: 10px;
    padding: 16px 14px 11px 14px;
    min-width: 170px;
    max-width: 200px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.98rem;
    color: #23304c;
    box-shadow: 0 1px 10px 0 rgba(80,120,180,0.07);
}
.evo-step svg {
    flex-shrink: 0;
}

.bike-why {
    background: #fff;
    padding: 44px 0 18px 0;
}
.bike-why h2 {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 18px;
}
.why-list {
    display: flex;
    gap: 17px;
    flex-wrap: wrap;
    justify-content: center;
}
.why-item {
    background: #f6fbff;
    border-radius: 10px;
    padding: 12px 17px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.97rem;
    max-width: 260px;
}
.why-item svg {
    flex-shrink: 0;
}

.bike-facts {
    background: #fff;
    padding: 40px 0 26px 0;
}
.bike-facts h2 {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 18px;
}
.facts-list {
    list-style: none;
    max-width: 660px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 9px;
    font-size: 0.99rem;
    color: #444;
}
.facts-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}
.facts-list svg {
    flex-shrink: 0;
}

.about-bike-cta {
    background: #f6fbff;
    padding: 35px 0 24px 0;
}
.about-bike-cta-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    flex-wrap: wrap;
}
.about-bike-cta-img img {
    max-width: 200px;
    border-radius: 10px;
    box-shadow: 0 2px 10px 0 rgba(30,60,90,0.06);
}
.about-bike-cta h2 {
    font-size: 1.12rem;
    margin-bottom: 7px;
}

@media (max-width: 900px) {
    .about-bike-hero-flex,
    .about-bike-cta-flex,
    .history-row,
    .evo-steps-list,
    .why-list {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .about-bike-hero-img img,
    .about-bike-cta-img img {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

@media (max-width: 600px) {
    .history-item, .evo-step, .why-item {
        min-width: 0;
        max-width: 98vw;
        width: 98vw;
    }
    .facts-list {
        font-size: 0.95rem;
    }
}
.cycling-hero {
    background: linear-gradient(90deg, #d0e8fc 60%, #e8f7fd 100%);
    padding: 48px 0 30px 0;
}
.cycling-hero-flex {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cycling-hero h1 {
    font-size: 2.05rem;
    margin-bottom: 12px;
}
.cycling-hero-img img {
    max-width: 300px;
    border-radius: 11px;
    box-shadow: 0 2px 14px 0 rgba(44,110,180,0.09);
}

.cycling-types {
    background: #fff;
    padding: 44px 0 20px 0;
}
.cycling-types h2 {
    text-align: center;
    font-size: 1.35rem;
    margin-bottom: 24px;
}
.cycling-types-row {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
}
.cycling-type {
    background: #f6fbff;
    border-radius: 11px;
    padding: 16px 18px 11px 18px;
    min-width: 120px;
    max-width: 150px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
}
.cycling-type svg {
    margin-bottom: 6px;
}

.cycling-benefits {
    background: #f6fbff;
    padding: 36px 0 18px 0;
}
.cycling-benefits h2 {
    text-align: center;
    font-size: 1.23rem;
    margin-bottom: 15px;
}
.cycling-benefits-list {
    display: flex;
    gap: 17px;
    flex-wrap: wrap;
    justify-content: center;
}
.cycling-benefits-list li {
    background: #fff;
    border-radius: 9px;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.99rem;
    max-width: 260px;
    list-style: none;
}
.cycling-benefits-list svg {
    flex-shrink: 0;
}

.cycling-training {
    background: #fff;
    padding: 46px 0 18px 0;
}
.cycling-training h2 {
    text-align: center;
    font-size: 1.19rem;
    margin-bottom: 19px;
}
.training-block {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
}
.training-text {
    flex: 1 1 340px;
    font-size: 1.05rem;
    color: #2e4165;
    display: flex;
    flex-direction: column;
    gap: 13px;
    min-width: 260px;
}
.training-img img {
    max-width: 270px;
    border-radius: 9px;
    box-shadow: 0 2px 12px 0 rgba(30,60,90,0.08);
}

.cycling-faq {
    background: #f6fbff;
    padding: 34px 0 20px 0;
}
.cycling-faq h2 {
    text-align: center;
    font-size: 1.11rem;
    margin-bottom: 17px;
}
.cycling-faq-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    max-width: 920px;
    margin: 0 auto;
}
.cycling-faq-item {
    background: #fff;
    border-radius: 8px;
    padding: 16px 16px 11px 16px;
    min-width: 220px;
    max-width: 320px;
    flex: 1 1 220px;
}
.cycling-faq-item h3 {
    font-size: 1rem;
    color: #2878de;
    margin-bottom: 6px;
}
.cycling-faq-item p {
    font-size: 0.98rem;
    color: #34496c;
}

@media (max-width: 900px) {
    .cycling-hero-flex,
    .training-block,
    .cycling-benefits-list,
    .cycling-types-row {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .cycling-hero-img img,
    .training-img img {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}
.aboutus-hero {
    background: linear-gradient(90deg, #e7f1fa 60%, #d4e8fc 100%);
    padding: 48px 0 32px 0;
}
.aboutus-hero-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.aboutus-hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}
.aboutus-hero-img img {
    max-width: 260px;
    border-radius: 12px;
    box-shadow: 0 2px 14px 0 rgba(44,110,180,0.09);
}
.mission-block {
    display: flex;
    align-items: center;
    gap: 22px;
    background: #f6fbff;
    border-radius: 12px;
    padding: 22px 16px;
    margin-bottom: 10px;
}
.mission-icon svg {
    min-width: 44px;
    min-height: 44px;
}
.aboutus-mission h2 {
    margin-bottom: 7px;
    font-size: 1.18rem;
}
.aboutus-mission p {
    font-size: 1.04rem;
    color: #243861;
}

.aboutus-benefits {
    background: #fff;
    padding: 38px 0 12px 0;
}
.aboutus-benefits h2 {
    text-align: center;
    font-size: 1.19rem;
    margin-bottom: 22px;
}
.aboutus-benefits-list {
    display: flex;
    gap: 26px;
    justify-content: center;
    flex-wrap: wrap;
}
.aboutus-benefit {
    background: #f6fbff;
    border-radius: 10px;
    padding: 18px 16px 14px 16px;
    text-align: center;
    min-width: 160px;
    max-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.97rem;
}
.aboutus-benefit svg {
    margin-bottom: 5px;
}

.aboutus-team {
    background: #f6fbff;
    padding: 36px 0 12px 0;
}
.aboutus-team h2 {
    text-align: center;
    margin-bottom: 16px;
    font-size: 1.11rem;
}
.team-row {
    display: flex;
    gap: 26px;
    justify-content: center;
    flex-wrap: wrap;
}
.team-person {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px 0 rgba(44,110,180,0.08);
    padding: 16px 12px;
    text-align: center;
    max-width: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}
.team-person img {
    border-radius: 50%;
    width: 74px;
    height: 74px;
    object-fit: cover;
    margin-bottom: 4px;
}
.team-person strong {
    font-weight: 600;
}

.aboutus-contact {
    background: #fff;
    padding: 34px 0 12px 0;
}
.aboutus-contact-block {
    display: flex;
    align-items: flex-start;
    gap: 26px;
    max-width: 700px;
    margin: 0 auto;
}
.contact-icon svg {
    min-width: 36px;
    min-height: 36px;
}
.aboutus-contact h2 {
    font-size: 1.14rem;
    margin-bottom: 7px;
}

.aboutus-cta {
    background: #f6fbff;
    padding: 28px 0 20px 0;
}
.aboutus-cta-block {
    text-align: center;
}
.aboutus-cta h2 {
    font-size: 1.11rem;
    margin-bottom: 9px;
}

@media (max-width: 850px) {
    .aboutus-hero-flex,
    .aboutus-contact-block,
    .aboutus-benefits-list,
    .team-row {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}
