
<!-- ==========================================
     СТИЛИ
     ========================================== -->
<style>
    .map-page {
        background: #f8fafc;
        padding: 30px 0 50px;
    }

    .map-header {
        text-align: center;
        margin-bottom: 28px;
    }

    .map-header .section-title {
        font-size: 2rem;
        font-weight: 700;
        color: #0b2a3b;
        margin-bottom: 4px;
    }

    .map-header .section-sub {
        color: #64748b;
        font-size: 1.05rem;
        margin: 0 auto;
        max-width: 500px;
    }

    .map-container {
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        background: #e2e8f0;
        aspect-ratio: 16 / 9;
        min-height: 450px;
        position: relative;
    }

    .map-container #yandexMap {
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
    }

    /* Адаптивность */
    @media (max-width: 768px) {
        .map-container {
            aspect-ratio: 4 / 3;
            min-height: 320px;
            border-radius: 16px;
        }
        .map-header .section-title {
            font-size: 1.6rem;
        }
        .map-header .section-sub {
            font-size: 0.95rem;
        }
    }

    @media (max-width: 480px) {
        .map-container {
            min-height: 280px;
            border-radius: 12px;
        }
        .map-page {
            padding: 16px 0 30px;
        }
        .map-header .section-title {
            font-size: 1.3rem;
        }
        .map-header .section-sub {
            font-size: 0.85rem;
        }
        .map-container #yandexMap {
            min-height: 280px;
        }
    }
</style>