/* Сброс базовых стилей */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html, body {
    height: 100%;
    font-family: 'Inter', Arial, sans-serif;
    background: #fafbfc;
    color: #19213D;
    font-size: 16px;
    line-height: 1.5;
}

/* Стили хедера */
.site-header {
    background: #fff;
    box-shadow: 0 2px 9px rgba(30,30,30,0.06);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    height: 72px;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
}
.site-logo {
    height: 42px;
    width: auto;
    display: block;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
}
.main-nav a {
    color: #1a2237;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 6px 4px;
    transition: color .18s;
}
.main-nav a:hover,
.main-nav a:focus {
    color: #00429c;
    outline: none;
}

/* Действия справа */
.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

/* Поисковая форма */
.search-form {
    display: flex;
    align-items: center;
    background: #f3f6fb;
    border-radius: 24px;
    padding: 3px 12px 3px 8px;
    margin-right: 10px;
}
.search-form input[type="text"] {
    border: none;
    background: transparent;
    font-size: 15px;
    outline: none;
    width: 140px;
    padding: 4px 6px;
}
.search-btn {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-left: 6px;
}

.btn {
    display: inline-block;
    border: none;
    background: #233568;
    color: #fff;
    padding: 9px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background .18s;
    cursor: pointer;
}
.btn-primary:hover, .btn-primary:focus {
    background: #2b426f;
}

/* Адаптив */
@media (max-width: 980px) {
    .header-container {
        flex-direction: column;
        align-items: stretch;
        height: auto;
        gap: 8px;
        padding: 10px 14px;
    }
    .main-nav ul {
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .site-logo {
        height: 38px;
    }
    .header-actions {
        gap: 12px;
        margin-top: 8px;
        justify-content: center;
    }
    .search-form input[type="text"] {
        width: 96px;
    }
}
@media (max-width: 600px) {
    .header-container {
        flex-direction: column;
        align-items: stretch;
        padding: 6px 4vw;
        height: auto;
    }
    .main-nav ul {
        gap: 8px;
        font-size: 15px;
    }
    .btn {
        padding: 8px 14px;
        font-size: 14px;
    }
}
.site-footer {
    background: #fff;
    box-shadow: 0 -2px 9px rgba(30,30,30,0.06);
    margin-top: 60px;
    font-size: 15px;
}
.footer-main {
    max-width: 1340px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    padding: 40px 28px 12px 28px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer-block {
    flex: 1 1 260px;
    min-width: 200px;
    margin-bottom: 20px;
}
.footer-title {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 12px;
    color: #233568;
}
.footer-partner-logos {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.partner-logo {
    height: 40px;
    width: auto;
    display: block;
    filter: grayscale(0.15);
    opacity: 0.82;
    background: transparent;
}
.footer-nav ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-nav a {
    color: #19213D;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 15px;
}
.footer-nav a:hover {
    color: #00429c;
}
.contacts {
    font-size: 15px;
}
.footer-email a {
    color: #233568;
    text-decoration: underline;
    font-weight: 600;
}
.footer-address {
    margin-top: 6px;
    color: #576077;
    font-size: 14px;
    line-height: 1.4;
}
.footer-social {
    margin-top: 10px;
    display: flex;
    gap: 18px;
}
.footer-social a svg {
    display: block;
    width: 24px;
    height: 24px;
    stroke: #233568;
    transition: stroke 0.18s, fill 0.18s;
}
.footer-social a:hover svg {
    stroke: #00429c;
    fill: #eaf3fe;
}

.footer-bottom {
    max-width: 1340px;
    margin: 0 auto;
    padding: 14px 28px 20px 28px;
    border-top: 1px solid #e9eaf1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-legal a {
    color: #19213D;
    text-decoration: underline;
    font-size: 13px;
    opacity: 0.88;
}
.footer-copyright {
    color: #888fa6;
    font-size: 13px;
    margin-top: 8px;
}
.footer-bbs {
    color: #233568;
    opacity: .92;
    margin-left: 8px;
}

@media (max-width: 900px) {
    .footer-main {
        flex-direction: column;
        gap: 20px;
        padding: 24px 8vw 10px 8vw;
    }
    .footer-block {
        min-width: 0;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        padding: 10px 8vw 16px 8vw;
        align-items: flex-start;
    }
}

@media (max-width: 500px) {
    .footer-main {
        padding: 16px 2vw 8px 2vw;
    }
    .footer-title {
        font-size: 15px;
    }
    .footer-partner-logos {
        gap: 14px;
    }
}
.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 28px;
}

/* Hero */
.home-hero {
    background: #fff;
    padding: 56px 0 56px 0;
    border-bottom: 1px solid #eef1f7;
}
.hero-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
}
.hero-text {
    flex: 1 1 540px;
}
.home-hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #233568;
    margin-bottom: 36px;
    letter-spacing: -1px;
}
.hero-benefits {
    list-style: disc inside;
    font-size: 1.18rem;
    color: #24315c;
    padding-left: 0;
}
.hero-benefits li { margin-bottom: 8px; font-weight: 500; }
.hero-media {
    flex: 1 1 340px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.hero-video-block {
    position: relative;
    max-width: 420px;
    border-radius: 18px;
    overflow: hidden;
    background: #233568;
    box-shadow: 0 6px 36px rgba(30,30,60,.12);
}
.hero-banner-img {
    width: 100%;
    height: auto;
    min-height: 220px;
    display: block;
}
.hero-video-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: filter .15s;
    z-index: 2;
}
.hero-video-btn:hover { filter: brightness(1.12); }

.block-title {
    font-size: 2rem;
    font-weight: 800;
    color: #233568;
    margin-bottom: 38px;
    letter-spacing: -0.5px;
    text-align: left;
}

/* Features */
.features {
    background: #f7f9fd;
    padding: 72px 0 48px 0;
}
.features-list {
    display: flex;
    gap: 32px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.feature-card {
    flex: 1 1 230px;
    min-width: 210px;
    background: #f1f6fe;
    border-radius: 24px;
    padding: 38px 16px 28px 16px;
    box-shadow: 0 2px 24px rgba(36,61,146,0.09);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow .15s;
}
.feature-card:hover {
    box-shadow: 0 6px 32px rgba(36,61,146,0.16);
}
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e4eefc;
    border-radius: 50%;
    width: 60px; height: 60px;
    margin-bottom: 20px;
}
.feature-title {
    font-size: 1.13rem;
    font-weight: 600;
    color: #233568;
    line-height: 1.34;
}

/* Courses */
.courses {
    background: #fff;
    padding: 68px 0 40px 0;
}
.courses-list {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 16px;
}
.course-card {
    flex: 1 1 255px;
    min-width: 220px;
    max-width: 300px;
    background: #f7f9fd;
    border-radius: 20px;
    box-shadow: 0 2px 14px rgba(36,61,146,0.10);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow .15s;
}
.course-card:hover {
    box-shadow: 0 6px 26px rgba(36,61,146,0.16);
}
.course-img {
    width: 100%;
    height: 146px;
    object-fit: cover;
    background: #eaf3fe;
    border-bottom: 1px solid #e6eaf5;
}
.course-info {
    padding: 22px 18px 16px 18px;
}
.course-name {
    font-size: 1.13rem;
    font-weight: 700;
    color: #19213D;
    margin-bottom: 10px;
}
.course-meta {
    color: #6272a5;
    font-size: 0.98rem;
    font-weight: 500;
}
.btn-courses-more {
    display: block;
    margin: 18px auto 0 auto;
    min-width: 184px;
}

/* Adaptive */
@media (max-width: 1080px) {
    .container { padding: 0 16px; }
    .hero-inner { flex-direction: column; gap: 32px;}
    .features-list { gap: 14px; }
    .courses-list { gap: 16px; }
}
@media (max-width: 800px) {
    .container { padding: 0 6vw; }
    .home-hero h1 { font-size: 1.37rem; margin-bottom: 18px;}
    .block-title { font-size: 1.3rem; margin-bottom: 24px;}
    .hero-video-block { min-width: 0; }
    .features-list, .courses-list {
        flex-direction: column;
        gap: 12px;
    }
}
@media (max-width: 520px) {
    .container { padding: 0 2vw; }
    .home-hero, .features, .courses { padding-left: 0; padding-right: 0;}
    .home-hero h1, .block-title { font-size: 1.08rem; }
}
.main-courses { background: #fafbfc; }

.courses-hero {
    background: #fff;
    padding: 54px 0 22px 0;
    border-bottom: 1px solid #eaeef7;
}
.courses-hero .block-title {
    margin-bottom: 18px;
}
.courses-hero-lead {
    font-size: 1.15rem;
    color: #374e80;
    max-width: 820px;
    margin-bottom: 0;
}

.courses-filter-section {
    background: #f7f9fd;
    padding: 28px 0 18px 0;
}
.courses-filter-label {
    font-weight: 600;
    color: #233568;
    margin-bottom: 8px;
    font-size: 1rem;
}
.courses-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}
.filter-btn {
    border: none;
    background: #e7eef9;
    color: #233568;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 11px;
    cursor: pointer;
    transition: background .16s, color .16s;
}
.filter-btn.active,
.filter-btn:hover {
    background: #233568;
    color: #fff;
}

.courses-list-section {
    padding: 42px 0 18px 0;
    background: #fafbfc;
}
.courses-list-big {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: flex-start;
}
.course-card-big {
    flex: 1 1 335px;
    max-width: 360px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 14px rgba(36,61,146,0.10);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow .15s;
    min-width: 260px;
}
.course-card-big:hover {
    box-shadow: 0 6px 26px rgba(36,61,146,0.16);
}
.course-img {
    width: 100%;
    height: 168px;
    object-fit: cover;
    background: #eaf3fe;
    border-bottom: 1px solid #e6eaf5;
}
.course-info {
    padding: 22px 18px 16px 18px;
    flex: 1 1 auto;
}
.course-name {
    font-size: 1.16rem;
    font-weight: 700;
    color: #19213D;
    margin-bottom: 8px;
}
.course-meta {
    color: #6272a5;
    font-size: 0.97rem;
    font-weight: 500;
    margin-bottom: 10px;
}
.course-desc {
    color: #425080;
    font-size: 0.98rem;
    margin-bottom: 14px;
    line-height: 1.5;
}
.course-btn {
    display: block;
    margin: 0 0 20px 18px;
    width: 120px;
    background: #f5f7fd;
    color: #233568;
    border: 1px solid #d4def0;
    font-weight: 600;
    border-radius: 8px;
    font-size: 15px;
    padding: 7px 0;
    text-align: center;
    transition: background .14s, color .14s;
}
.course-btn:hover {
    background: #233568;
    color: #fff;
}

.courses-faq {
    background: #f7f9fd;
    padding: 48px 0 42px 0;
}
.block-title-small {
    font-size: 1.5rem;
    margin-bottom: 32px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 700px;
}
.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(36,61,146,0.06);
    padding: 22px 26px 18px 26px;
}
.faq-q {
    font-weight: 700;
    color: #233568;
    margin-bottom: 8px;
    font-size: 1.05rem;
}
.faq-a {
    color: #405172;
    font-size: 0.99rem;
    line-height: 1.55;
}

@media (max-width: 1080px) {
    .courses-list-big { gap: 16px; }
    .course-card-big { min-width: 220px; }
}
@media (max-width: 800px) {
    .courses-list-big { flex-direction: column; gap: 14px; }
    .course-card-big { max-width: 100%; }
    .faq-list { padding-left: 0; }
}
@media (max-width: 500px) {
    .course-info { padding: 12px 10px 10px 10px; }
    .faq-item { padding: 13px 8px 10px 8px; }
    .courses-filter-section { padding: 18px 0 9px 0;}
}
.main-publications { background: #fafbfc; }

.publications-hero {
    background: #fff;
    padding: 54px 0 22px 0;
    border-bottom: 1px solid #eaeef7;
}
.publications-hero-lead {
    font-size: 1.16rem;
    color: #374e80;
    max-width: 820px;
    margin-bottom: 0;
}

.publications-filter-section {
    background: #f7f9fd;
    padding: 28px 0 18px 0;
}
.publications-filter-label {
    font-weight: 600;
    color: #233568;
    margin-bottom: 8px;
    font-size: 1rem;
}
.publications-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}
.publications-filters .filter-btn {
    border: none;
    background: #e7eef9;
    color: #233568;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 11px;
    cursor: pointer;
    transition: background .16s, color .16s;
}
.publications-filters .filter-btn.active,
.publications-filters .filter-btn:hover {
    background: #233568;
    color: #fff;
}

.publications-list-section {
    padding: 42px 0 18px 0;
    background: #fafbfc;
}
.publications-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: flex-start;
}
.publication-card {
    flex: 1 1 315px;
    max-width: 340px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 14px rgba(36,61,146,0.10);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 220px;
    transition: box-shadow .15s;
}
.publication-card:hover {
    box-shadow: 0 6px 26px rgba(36,61,146,0.16);
}
.publication-img {
    width: 100%;
    height: 142px;
    object-fit: cover;
    background: #eaf3fe;
    border-bottom: 1px solid #e6eaf5;
}
.publication-info {
    padding: 22px 18px 16px 18px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}
.publication-title {
    font-size: 1.12rem;
    font-weight: 700;
    color: #19213D;
    margin-bottom: 8px;
}
.publication-desc {
    color: #425080;
    font-size: 0.98rem;
    margin-bottom: 16px;
    line-height: 1.5;
}
.pub-btn {
    width: 120px;
    background: #f5f7fd;
    color: #233568;
    border: 1px solid #d4def0;
    font-weight: 600;
    border-radius: 8px;
    font-size: 15px;
    padding: 7px 0;
    text-align: center;
    align-self: flex-start;
    margin-top: auto;
    margin-bottom: 10px;
    transition: background .14s, color .14s;
}
.pub-btn:hover {
    background: #233568;
    color: #fff;
}

.publications-faq {
    background: #f7f9fd;
    padding: 48px 0 42px 0;
}
.block-title-small {
    font-size: 1.5rem;
    margin-bottom: 32px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 700px;
}
.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(36,61,146,0.06);
    padding: 22px 26px 18px 26px;
}
.faq-q {
    font-weight: 700;
    color: #233568;
    margin-bottom: 8px;
    font-size: 1.05rem;
}
.faq-a {
    color: #405172;
    font-size: 0.99rem;
    line-height: 1.55;
}
.faq-a a { color: #233568; text-decoration: underline; }

@media (max-width: 1080px) {
    .publications-list { gap: 16px; }
    .publication-card { min-width: 180px; }
}
@media (max-width: 800px) {
    .publications-list { flex-direction: column; gap: 14px; }
    .publication-card { max-width: 100%; }
    .faq-list { padding-left: 0; }
}
@media (max-width: 500px) {
    .publication-info { padding: 12px 10px 10px 10px; }
    .faq-item { padding: 13px 8px 10px 8px; }
    .publications-filter-section { padding: 18px 0 9px 0;}
}
.main-community { background: #fafbfc; }

.community-hero {
    background: #fff;
    padding: 54px 0 22px 0;
    border-bottom: 1px solid #eaeef7;
}
.community-hero-lead {
    font-size: 1.15rem;
    color: #374e80;
    max-width: 880px;
}

.community-benefits-section {
    background: #f7f9fd;
    padding: 48px 0 36px 0;
}
.community-benefits-list {
    display: flex;
    gap: 32px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.community-benefit-card {
    flex: 1 1 210px;
    min-width: 180px;
    background: #f1f6fe;
    border-radius: 20px;
    padding: 36px 10px 26px 10px;
    box-shadow: 0 2px 18px rgba(36,61,146,0.06);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow .14s;
}
.community-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e4eefc;
    border-radius: 50%;
    width: 60px; height: 60px;
    margin-bottom: 16px;
}
.community-benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #233568;
    line-height: 1.32;
}

.community-events-section {
    background: #fff;
    padding: 62px 0 32px 0;
}
.community-events-list {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.community-event {
    flex: 1 1 260px;
    min-width: 200px;
    background: #f7f9fd;
    border-radius: 18px;
    padding: 30px 18px 20px 18px;
    box-shadow: 0 2px 10px rgba(36,61,146,0.06);
    margin-bottom: 0;
}
.event-title {
    font-weight: 700;
    color: #1a2240;
    margin-bottom: 10px;
    font-size: 1.11rem;
}
.event-desc {
    color: #425080;
    font-size: 1.02rem;
    line-height: 1.55;
}
.event-desc a {
    color: #3377cc;
    text-decoration: underline;
}

.community-testimonials-section {
    background: #f7f9fd;
    padding: 54px 0 36px 0;
}
.community-testimonials-list {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.testimonial {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 9px rgba(30,30,30,0.07);
    flex: 1 1 240px;
    min-width: 180px;
    padding: 22px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 7px;
}
.testimonial-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    object-fit: cover; background: #eaf3fe;
    margin-bottom: 8px;
}
.testimonial-author {
    font-weight: 700; color: #233568; font-size: 1.04rem;
}
.testimonial-text {
    color: #19213D; font-size: 0.97rem;
}

.community-questions-section {
    background: #fff;
    padding: 56px 0 40px 0;
}
.community-question-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 520px;
    margin: 0 0 0 0;
}
.community-question-form textarea {
    border: 1px solid #c8d2e6;
    border-radius: 8px;
    font-size: 15px;
    min-height: 74px;
    max-width: 100%;
    padding: 11px 13px;
    background: #f7f9fd;
    outline: none;
    resize: vertical;
    font-family: inherit;
}
.community-question-form .btn-primary {
    width: 160px;
    align-self: flex-start;
}
.community-discuss-note {
    font-size: 0.97rem;
    color: #576077;
    margin-top: 6px;
}

@media (max-width: 1080px) {
    .community-benefits-list, .community-events-list, .community-testimonials-list { gap: 14px; }
}
@media (max-width: 800px) {
    .community-benefits-list, .community-events-list, .community-testimonials-list {
        flex-direction: column; gap: 12px;
    }
    .community-event, .community-benefit-card, .testimonial { max-width: 100%; }
}
@media (max-width: 500px) {
    .community-benefit-card { padding: 18px 5px 15px 5px; }
    .community-event { padding: 18px 7px 12px 7px; }
    .community-questions-section, .community-events-section, .community-benefits-section, .community-testimonials-section { padding-left: 0; padding-right: 0; }
}
.main-faq { background: #fafbfc; }

.faq-hero {
    background: #fff;
    padding: 54px 0 22px 0;
    border-bottom: 1px solid #eaeef7;
}
.faq-hero-lead {
    font-size: 1.13rem;
    color: #374e80;
    max-width: 820px;
}

.faq-list-section {
    padding: 54px 0 36px 0;
}
.faq-list-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    justify-content: flex-start;
}
.faq-item {
    flex: 1 1 340px;
    min-width: 230px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(36,61,146,0.07);
    padding: 24px 22px 20px 22px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}
.faq-q {
    font-weight: 700;
    color: #233568;
    margin-bottom: 10px;
    font-size: 1.09rem;
}
.faq-a {
    color: #405172;
    font-size: 0.99rem;
    line-height: 1.55;
}
.faq-a a { color: #233568; text-decoration: underline; }

.faq-contact-section {
    background: #f7f9fd;
    padding: 48px 0 42px 0;
}
.faq-contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 540px;
    margin: 0 0 0 0;
}
.faq-contact-form input[type="text"],
.faq-contact-form input[type="email"],
.faq-contact-form textarea {
    border: 1px solid #c8d2e6;
    border-radius: 8px;
    font-size: 15px;
    padding: 11px 13px;
    background: #fff;
    outline: none;
    font-family: inherit;
}
.faq-contact-form textarea {
    min-height: 74px;
    resize: vertical;
}
.faq-contact-form .btn-primary {
    width: 180px;
    align-self: flex-start;
}
.faq-contact-note {
    font-size: 0.97rem;
    color: #576077;
    margin-top: 8px;
}

@media (max-width: 1080px) {
    .faq-list-grid { gap: 14px; }
    .faq-item { min-width: 180px; }
}
@media (max-width: 800px) {
    .faq-list-grid { flex-direction: column; gap: 12px; }
    .faq-item { max-width: 100%; }
}
@media (max-width: 500px) {
    .faq-item { padding: 13px 8px 10px 8px; }
    .faq-contact-section { padding-left: 0; padding-right: 0;}
}
