:root {
    --primary: #0abab5;
    --primary-light: #20e2dd;
    --primary-dark: #088a86;
    --primary-soft: #ccfbf1;
    --primary-tint: #f0fdfa;
    --accent: #e11d48;
    --neutral-dark: #1f2937;
    --neutral-light: #f8fafc;
    --neutral-bg: #ffffff;
    --border-color: #e2e8f0;
    --success: #10b981;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--neutral-light);
    color: var(--neutral-dark);
    line-height: 1.6;
    font-size: 16px;
}

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

.nowrap {
    white-space: nowrap;
}

/* БЛОК 1: Шапка сайта и Навигация */
header {
    background-color: var(--neutral-bg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--neutral-dark);
    z-index: 1001;
    height: 100%;
}

.logo-circle {
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-title {
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--primary);
    line-height: 1.3;
    max-width: 400px;
}

.logo-subtitle {
    font-size: 11px;
    color: #64748b;
    line-height: 1.2;
    margin-top: 2px;
}

/* Кнопка бургер-меню */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
    padding: 0;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Анимация бургера при открытии */
.menu-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

nav {
    display: flex;
    align-items: center;
    height: 100%;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
    height: 100%;
}

nav a {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
}

nav a:hover {
    color: var(--primary);
}

.nav-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    height: 100%;
}

.nav-mobile-only {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    text-align: center;
    height: 42px;
}

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

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

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

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

main {
    margin-top: 80px;
}

/* БЛОК 2: Главный экран (Hero) */
.hero {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.badge {
    display: inline-block;
    background-color: var(--primary-soft);
    color: #047857;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--neutral-dark);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero .subtitle {
    font-size: 19px;
    font-weight: 500;
    color: #334155;
    margin-bottom: 24px;
    line-height: 1.4;
}

.hero .description {
    font-size: 16px;
    color: #475569;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.6);
    padding: 15px;
    border-left: 4px solid var(--primary);
    border-radius: 0 8px 8px 0;
}

.hero .address-info {
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-image-box {
    border-radius: 16px;
    height: 420px;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    overflow: hidden;
}

.hero-img,
.about-img,
.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Карточки преимуществ */
.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.feature-card {
    background-color: var(--neutral-bg);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.feature-card h3 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-card p {
    font-size: 14px;
    color: #64748b;
}

/* Стили секций */
section {
    padding: 80px 0;
}

.section-bg-white {
    background-color: var(--neutral-bg);
}

.section-title-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-size: 32px;
    color: var(--neutral-dark);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: #64748b;
}

/* БЛОК 3: О проекте */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 20px;
}

.about-highlight {
    background-color: #f1f5f9;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-sidebar-card {
    padding: 30px;
    background-color: #f8fafc;
    border-radius: 16px;
    border: 1px dashed #cbd5e1;
}

.about-sidebar-card h4 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 18px;
}

.about-image-box {
    border-radius: 16px;
    height: 380px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

/* БЛОК 4: Позиция Сарданы Авксентьевой */
.quote-section {
    background-color: #f1f5f9;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: stretch;
}

.quote-container {
    background-color: var(--neutral-bg);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.team-image-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    min-height: 360px;
}

.quote-block {
    margin-bottom: 30px;
}

.quote-text-item {
    font-size: 18px;
    font-style: italic;
    color: var(--neutral-dark);
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.quote-text-item::before {
    content: "«";
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 40px;
    color: var(--primary);
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-text-item::after {
    content: "»";
    font-size: 40px;
    color: var(--primary);
    font-family: Georgia, serif;
    line-height: 1;
    vertical-align: sub;
    margin-left: 5px;
}

.quote-author {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-info h5 {
    font-size: 16px;
    color: var(--neutral-dark);
    font-weight: 700;
}

.author-info p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 4px;
}

.author-source {
    font-size: 12px;
    color: #94a3b8;
    font-style: italic;
    display: block;
}

.quote-footer-note {
    margin-top: 24px;
    font-size: 15px;
    color: #475569;
    background-color: var(--primary-tint);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

/* БЛОК 5: Партнеры проекта */
.partners-section {
    padding: 50px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-color: #fafafa;
}

.partners-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
}

.partner-link:hover {
    transform: translateY(-4px);
}

.partner-fallback-box {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    min-height: 80px;
}

.partner-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.partner-logo-text {
    font-size: 14px;
    font-weight: 700;
    color: #475569;
    line-height: 1.4;
}

/* БЛОК 6: Почему мы запускаем центр */
.why-launch-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    border-radius: 20px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: center;
}

.why-launch-text h2 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 800;
}

.why-launch-text p {
    color: #cbd5e1;
    margin-bottom: 16px;
    font-size: 16px;
}

/* БЛОК 7: С чем помогает проект */
.help-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.help-card {
    background: var(--neutral-bg);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.help-icon {
    width: 44px;
    height: 44px;
    background-color: var(--primary-tint);
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.help-card h3 {
    font-size: 16px;
    color: var(--neutral-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.help-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* БЛОК 8: Как работает центр */
.steps-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.step-number {
    font-size: 36px;
    font-weight: 900;
    color: #cbd5e1;
    margin-bottom: 10px;
    line-height: 1;
}

.step-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--neutral-dark);
}

.step-desc {
    font-size: 13px;
    color: #64748b;
}

.steps-info-note {
    background-color: #fffbeb;
    border: 1px solid #fef3c7;
    padding: 16px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    color: #b45309;
    font-weight: 500;
}

/* БЛОК 9: Что важно знать о формате помощи */
.format-section {
    background-color: #f1f5f9;
    border-radius: 16px;
    padding: 40px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.format-content h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 12px;
}

/* БЛОК 10 и 11: Кто может обратиться и документы */
.eligibility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.eligibility-box {
    background-color: var(--neutral-bg);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 16px;
}

.eligibility-box h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 700;
}

.check-list {
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 15px;
    color: #475569;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 16px;
}

.doc-list li::before {
    content: "📎";
    font-size: 14px;
}

.note-text {
    margin-top: 20px;
    font-size: 13px;
    color: #64748b;
    font-style: italic;
}

/* БЛОК 12: Форма обращения */
.form-wizard-card {
    background-color: var(--neutral-bg);
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.form-header {
    background-color: var(--primary);
    color: white;
    padding: 30px 40px;
}

.form-header h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.form-header p {
    color: #e0f7f5;
    font-size: 14px;
}

.form-progress {
    display: flex;
    background-color: #f1f5f9;
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
}

.progress-step {
    flex: 1;
    text-align: center;
    padding: 12px 6px;
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.progress-step.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background-color: #fff;
}

.progress-step.completed {
    color: var(--success);
    border-bottom-color: var(--success);
}

.form-body {
    padding: 40px;
}

.form-step-content {
    display: none;
}

.form-step-content.active {
    display: block;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--neutral-dark);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
    color: var(--neutral-dark);
    transition: border-color 0.2s;
    background-color: #fafafa;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(10, 186, 181, 0.12);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.radio-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.radio-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
}

.radio-checkbox-label input {
    margin-top: 4px;
}

.form-footer {
    padding: 24px 40px;
    background-color: #f8fafc;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
}

/* БЛОК 13: Сообщение после отправки */
.success-screen {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 64px;
    height: 64px;
    background-color: #d1fae5;
    color: var(--success);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.success-title {
    font-size: 24px;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 12px;
}

.success-text {
    color: #475569;
    font-size: 16px;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.status-tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.status-tag {
    background-color: #f1f5f9;
    color: #475569;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

/* БЛОК 14: Контакты и графа «Как нас найти» */
.contacts-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: start;
}

.contact-info-card {
    background-color: var(--neutral-bg);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 16px;
}

.contact-info-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-detail-item {
    margin-bottom: 20px;
}

.contact-detail-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 16px;
    color: var(--neutral-dark);
    font-weight: 500;
}

.find-us-box {
    background-color: #f1f5f9;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 4px solid var(--accent);
}

.find-us-box h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 6px;
}

.find-us-box p {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.5;
}

.map-container {
    border-radius: 16px;
    height: 100%;
    min-height: 440px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    background-color: #f1f5f9;
}

#yandexMap {
    width: 100%;
    height: 100%;
    min-height: 440px;
}

/* БЛОК 15: FAQ Аккордеон */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--neutral-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--neutral-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.faq-trigger:hover {
    color: var(--primary);
}

.faq-content {
    padding: 0 24px 20px 24px;
    color: #475569;
    font-size: 15px;
    display: none;
}

.faq-item.open .faq-content {
    display: block;
}

.faq-icon::after { content: "+"; font-size: 20px; color: var(--primary); }
.faq-item.open .faq-icon::after { content: "−"; }

/* БЛОК 16: Финальный призыв к действию */
.cta-section {
    background: linear-gradient(135deg, var(--primary-tint) 0%, var(--primary-soft) 100%);
    text-align: center;
    padding: 80px 0;
    border-top: 1px solid #99f6e4;
}

.cta-box {
    max-width: 750px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 34px;
    color: var(--neutral-dark);
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    color: #334155;
    margin-bottom: 30px;
}

/* БЛОК 17: Подвал сайта (Футер) */
footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 60px 0 30px 0;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h4 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    list-style: none;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 30px;
}

.disclaimer {
    font-size: 12px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.copyright {
    font-size: 12px;
    color: #475569;
    text-align: center;
}


/* ==========================================================================
   ГЛОБАЛЬНАЯ АДАПТИВНОСТЬ И МОБИЛЬНАЯ ВЕРСИЯ
   ========================================================================== */

@media (max-width: 1024px) {
    section { padding: 60px 0; }
    .hero-features { grid-template-columns: repeat(2, 1fr); margin-top: 20px; gap: 15px; }
    .help-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .steps-timeline { grid-template-columns: 1fr; gap: 30px; }
    .eligibility-grid { grid-template-columns: 1fr; gap: 20px; }
    .contacts-grid { grid-template-columns: 1fr; gap: 30px; }
    .map-container { min-height: 350px; }
    #yandexMap { min-height: 350px; }
    .quote-grid { grid-template-columns: 1fr; gap: 30px; }
    .team-image-box { min-height: 300px; max-height: 380px; }
    .about-image-box { height: 360px; }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--neutral-bg);
        padding: 40px 20px;
        transition: left 0.3s ease;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        align-items: flex-start;
        flex-direction: column;
        overflow-y: auto;
        z-index: 1005;
    }

    nav.open {
        left: 0 !important;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        gap: 20px;
        margin-bottom: 40px;
        height: auto;
    }

    nav a {
        font-size: 18px;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }

    .nav-mobile-only {
        display: block !important;
        width: 100%;
        margin-top: 20px;
    }

    .nav-container > .nav-buttons {
        display: none;
    }

    .hero { padding: 40px 0; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .hero h1 { font-size: 26px; }
    .hero .subtitle { font-size: 17px; }
    .hero .description { text-align: left; font-size: 15px; }
    .hero .address-info { justify-content: center; text-align: center; }
    .hero-cta-buttons { justify-content: center; width: 100%; }
    .hero-cta-buttons .btn { width: 100%; }
    .hero-image-box { height: 300px; order: -1; }

    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-image-box { height: 280px; }
    .section-title { font-size: 24px; }
    .section-title-wrapper { margin-bottom: 35px; }

    .quote-container { padding: 30px 20px; }
    .quote-text-item { font-size: 16px; }

    .why-launch-box { grid-template-columns: 1fr; padding: 30px 20px; text-align: center; }
    .why-launch-box h2 { font-size: 22px; }
    .why-launch-box div:last-child { display: none; }

    .format-section { flex-direction: column; padding: 25px 20px; text-align: center; }
    .format-section div:last-child { display: none; }
    .eligibility-box { padding: 25px 20px; }

    .form-header { padding: 25px 20px; text-align: center; }
    .form-header h2 { font-size: 20px; }
    .form-body { padding: 25px 20px; }
    .form-grid-2 { grid-template-columns: 1fr; gap: 0; }
    .form-footer { padding: 20px; flex-direction: column-reverse; gap: 12px; }
    .form-footer .btn { width: 100%; }

    .contact-info-card { padding: 25px 20px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .footer-links { justify-content: center; flex-direction: column; gap: 15px; }
    .cta-box h2 { font-size: 24px; }
}

@media (max-width: 480px) {
    .hero-features, .help-grid { grid-template-columns: 1fr; }
    .logo-title { font-size: 14px; }
    .logo-subtitle { display: none; }
}
