/* ========================================
   ПОЛНЫЙ СТИЛЬ ДЛЯ СТРОИТЕЛЬНОЙ КОМПАНИИ
   Цвета: Черный, Оранжевый, Синий, Белый
   Адаптив + Техника в списках
   ======================================== */

/* ---------- ОБЩИЕ НАСТРОЙКИ ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #FFFFFF;
    color: #111111;
    line-height: 1.6;
    padding-top: 80px;
    padding-bottom: 70px;
}

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

/* ---------- ШАПКА ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #1A1A1A;
    padding: 20px 0;
    border-bottom: 4px solid #FF6B00;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 700;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.3),
                 0 0 50px rgba(255, 107, 0, 0.15);
    transition: text-shadow 0.4s ease;
}

.logo-text strong {
    color: #FF6B00;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-slogan {
    font-size: 12px;
    font-weight: 400;
    color: #FF6B00;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

.logo-image {
    max-height: 55px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.6))
            drop-shadow(0 0 30px rgba(255, 107, 0, 0.3));
    transition: filter 0.3s ease;
}

.logo-image:hover {
    filter: drop-shadow(0 0 25px rgba(255, 107, 0, 0.9))
            drop-shadow(0 0 50px rgba(255, 107, 0, 0.5));
}

.logo:hover .logo-text {
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.4),
                 0 0 40px rgba(255, 107, 0, 0.2),
                 0 0 80px rgba(255, 107, 0, 0.1);
}

.logo:hover .logo-image {
    filter: drop-shadow(0 0 25px rgba(255, 107, 0, 0.8))
            drop-shadow(0 0 50px rgba(255, 107, 0, 0.4));
}

/* ---------- МЕНЮ ---------- */
.nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #FF6B00;
}

/* ---------- ВЫПАДАЮЩЕЕ МЕНЮ ---------- */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown .dropdown-toggle {
    cursor: pointer;
}

.nav-dropdown .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1A1A1A;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 0 0 8px 8px;
    border-top: 3px solid #FF6B00;
    padding: 8px 0;
}

.nav-dropdown .dropdown-content a {
    color: #FFFFFF;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    font-weight: 500;
    transition: background 0.2s;
}

.nav-dropdown .dropdown-content a:hover {
    background-color: #FF6B00;
    color: #FFFFFF;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

/* ---------- ОСНОВНАЯ СЕТКА ---------- */
.main-grid {
    display: flex;
    gap: 40px;
    margin: 40px auto;
    align-items: flex-start;
    padding-bottom: 100px;
}

.main-content {
    flex: 1;
    min-width: 0;
}

/* ---------- БОКОВАЯ КОЛОНКА ---------- */
.sidebar {
    width: 310px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-self: flex-start;
    position: sticky;
    top: 100px;
}

.sidebar:empty {
    display: none;
}

.sidebar:empty ~ .main-content {
    max-width: 800px;
    margin: 0 auto;
}

/* ---------- КОНТЕНТ ---------- */
.hero-block {
    background: linear-gradient(135deg, #0044CC 0%, #1A1A1A 100%);
    color: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.hero-sub {
    font-size: 20px;
    opacity: 0.9;
    margin-top: 10px;
}

.page-content h1 {
    font-size: 32px;
    color: #1A1A1A;
    margin-bottom: 20px;
    border-left: 6px solid #FF6B00;
    padding-left: 20px;
}

.content-body {
    font-size: 16px;
    color: #222;
}

/* ---------- ГАЛЕРЕЯ ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid #0044CC;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* ---------- ВИДЖЕТЫ ---------- */
.widget {
    background: #F8F9FA;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #0044CC;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.widget:hover {
    box-shadow: 0 4px 20px rgba(0, 68, 204, 0.15);
    transform: translateY(-2px);
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #FF6B00;
}

.widget ul {
    list-style: none;
    padding-left: 0;
}

.widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: #0044CC;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.widget ul li a:hover {
    color: #FF6B00;
}

.widget-calendar {
    border-left-color: #FF6B00;
}

.widget-weather {
    border-left-color: #0044CC;
}

.widget-news {
    border-left-color: #1A1A1A;
}

.widget-quick-form {
    border-left-color: #FF6B00;
}

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

.news-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.news-list li a {
    color: #0044CC;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.news-list li a:hover {
    color: #FF6B00;
}

.btn-phone {
    display: inline-block;
    background: #FF6B00;
    color: #FFFFFF;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}

.btn-phone:hover {
    background: #0044CC;
    transform: scale(1.05);
}

/* ---------- СПИСКИ С ТЕХНИКОЙ ---------- */
ul, ol {
    list-style: none;
    padding-left: 0;
}

ul li, ol li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.6;
}

ul > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    background-image: url('../images/icons/excavator.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

ul ul > li::before {
    background-image: url('../images/icons/dump-truck.svg');
}

ul ul ul > li::before {
    background-image: url('../images/icons/roller.svg');
}

ul ul ul ul > li::before {
    background-image: url('../images/icons/road-sign.svg');
}

ul ul ul ul ul > li::before {
    background-image: url('../images/icons/crane.svg');
}

/* Отступ между заголовком и списком */
p + ul {
    margin-top: 12px;
}

/* ---------- ОТСТУПЫ МЕЖДУ УРОВНЯМИ СПИСКОВ ---------- */
ul ul,
ol ol,
ul ol,
ol ul {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 25px;
}

ul li,
ol li {
    margin-bottom: 8px;
}

ul li:last-child,
ol li:last-child {
    margin-bottom: 0;
}

/* Дополнительный отступ для вложенных пунктов */
ul ul li,
ol ol li,
ul ol li,
ol ul li {
    margin-bottom: 6px;
}

/* ---------- ОТСТУП ОТ СПИСКА ДО НОВОГО ПАРАГРАФА ---------- */
ul + p,
ol + p {
    margin-top: 20px;
}

ul + ul,
ol + ol,
ul + ol,
ol + ul {
    margin-top: 20px;
}

/* ---------- ПОДВАЛ ---------- */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 8px 0;
    border-top: 3px solid #FF6B00;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-left p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.footer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.footer-phone {
    color: #FF6B00;
}

.footer-phone:hover {
    background: #FF6B00;
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.5);
}

.footer-phone:hover svg {
    transform: rotate(-15deg) scale(1.1);
}

.footer-email {
    color: #0044CC;
}

.footer-email:hover {
    background: #0044CC;
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 0 30px rgba(0, 68, 204, 0.5);
}

.footer-email:hover svg {
    transform: rotate(15deg) scale(1.1);
}

.footer-address-trigger {
    color: #FFFFFF;
}

.footer-address-trigger:hover {
    background: #FFFFFF;
    color: #1A1A1A;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.footer-address-trigger:hover svg {
    transform: scale(1.15);
}

.footer-phone-link {
    color: #FF6B00;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-phone-link:hover {
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.6);
    transform: scale(1.05);
}

.footer-email-link {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-email-link:hover {
    color: #FF6B00;
    text-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
}

.footer-address {
    color: #CCCCCC;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ---------- ИКОНКА ПОЛИТИКИ ---------- */
.footer-policy-inline {
    color: #FF6B00;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    line-height: 1;
    font-size: 18px;
    margin-left: 4px;
}

.footer-policy-inline:hover {
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.6);
    transform: scale(1.1);
}

/* ---------- ВСПЛЫВАЮЩЕЕ ОКНО С АДРЕСОМ ---------- */
.address-popup {
    display: none;
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 20px 30px;
    border-radius: 12px;
    border: 2px solid #FF6B00;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    min-width: 280px;
    max-width: 400px;
    animation: fadeInUp 0.3s ease;
}

.address-popup.show {
    display: block;
}

.address-popup-content {
    position: relative;
    text-align: center;
}

.address-popup-content p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    padding-right: 20px;
}

.address-popup-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 28px;
    height: 28px;
    background: #FF6B00;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.address-popup-close:hover {
    transform: scale(1.2);
    background: #FF4500;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ---------- МОДАЛЬНОЕ ОКНО ПОЛИТИКИ ---------- */
.policy-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    animation: policyFadeIn 0.3s ease;
}

.policy-popup.show {
    display: flex;
}

.policy-popup-content {
    background: #1A1A1A;
    color: #FFFFFF;
    max-width: 560px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 16px;
    border: 2px solid #FF6B00;
    padding: 30px 35px 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    animation: policyScaleIn 0.3s ease;
}

.policy-popup-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 28px;
    font-weight: 700;
    color: #FF6B00;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.policy-popup-close:hover {
    transform: scale(1.2);
    color: #FFFFFF;
}

.policy-popup-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #FF6B00;
    border-bottom: 2px solid #FF6B00;
    padding-bottom: 12px;
    margin-bottom: 18px;
}

.policy-popup-body p {
    font-size: 15px;
    line-height: 1.6;
    color: #CCCCCC;
    margin-bottom: 12px;
}

.policy-popup-body strong {
    color: #FFFFFF;
}

.policy-popup-content::-webkit-scrollbar {
    width: 4px;
}

.policy-popup-content::-webkit-scrollbar-track {
    background: #2A2A2A;
    border-radius: 10px;
}

.policy-popup-content::-webkit-scrollbar-thumb {
    background: #FF6B00;
    border-radius: 10px;
}

@keyframes policyFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes policyScaleIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ---------- ГОТОВЫЕ КЛАССЫ ДЛЯ КОНТЕНТА ---------- */
.content-title {
    color: #1A1A1A;
    border-left: 6px solid #FF6B00;
    padding-left: 20px;
    font-size: 26px;
    margin-bottom: 10px;
}

.content-highlight {
    background: #F8F9FA;
    border-left: 4px solid #FF6B00;
    padding: 16px 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.content-highlight p {
    margin: 0;
    color: #FF6B00;
    font-weight: 700;
    font-size: 17px;
    font-style: italic;
}

.content-accent {
    color: #FF6B00;
    font-weight: 700;
    font-style: italic;
}

.content-logo {
    text-align: center;
    margin-bottom: 20px;
}

.content-logo img {
    max-width: 100%;
    height: auto;
}

hr.content-divider {
    border: none !important;
    height: 2px !important;
    background: linear-gradient(to right, transparent, #FF6B00, transparent) !important;
    margin: 30px 0 !important;
    opacity: 0.5 !important;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 25px 0 30px;
    background: #F8F9FA;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #FF6B00;
}

.contact-form-wrapper {
    max-width: 100%;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea,
.contact-form-wrapper button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.content-quote-simple {
    position: relative;
    padding: 25px 0;
    text-align: center;
    font-style: italic;
    font-weight: 700;
    font-size: 17px;
    color: #1A1A1A;
    line-height: 1.6;
}

.content-quote-simple::before,
.content-quote-simple::after {
    content: '';
    display: block;
    height: 2px;
    background: linear-gradient(to right, transparent, #FF6B00, transparent);
    opacity: 0.5;
    margin: 0 auto;
    width: 100%;
}

.content-quote-simple::before {
    margin-bottom: 20px;
}

.content-quote-simple::after {
    margin-top: 20px;
}

/* ---------- АДАПТАВ ДЛЯ ТЕЛЕФОНОВ ---------- */
@media (max-width: 768px) {
    body {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .header {
        padding: 6px 0;
    }

    .header-inner {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .logo {
        font-size: 18px;
        gap: 6px;
        width: 100%;
        justify-content: center;
        padding: 0;
        margin: 0;
    }

    .logo-image {
        max-height: 35px;
    }

    .logo-text {
        font-size: 18px;
    }

    .logo-slogan {
        font-size: 8px;
        letter-spacing: 0.5px;
    }

    .nav {
        justify-content: center;
        gap: 6px;
        flex-wrap: wrap;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .nav-link {
        font-size: 12px;
        padding: 3px 5px;
    }

    .nav-dropdown {
        position: relative;
    }

    .nav-dropdown .dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: #1A1A1A;
        min-width: 200px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        border-radius: 8px;
        border-top: 3px solid #FF6B00;
        padding: 8px 0;
        z-index: 2000;
    }

    .nav-dropdown .dropdown-content a {
        padding: 10px 20px;
        font-size: 14px;
        color: #FFFFFF;
        text-decoration: none;
        display: block;
        white-space: nowrap;
        border-bottom: 1px solid #2A2A2A;
        transition: background 0.2s;
    }

    .nav-dropdown .dropdown-content a:last-child {
        border-bottom: none;
    }

    .nav-dropdown .dropdown-content a:hover {
        background: #FF6B00;
        color: #FFFFFF;
    }

    .nav-dropdown .dropdown-toggle::after {
        content: ' ▾';
        font-size: 12px;
        color: #FF6B00;
    }

    .nav-dropdown .dropdown-content.show {
        display: block;
    }

    .main-grid {
        flex-direction: column;
        margin: 20px auto;
        gap: 20px;
    }

    .sidebar {
        width: 100%;
    }

    .footer {
        padding: 6px 0;
    }

    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 4px;
        text-align: center;
    }

    .footer-inner > div:first-child {
        font-size: 10px;
        flex: 1 1 100%;
        text-align: center;
        order: 1;
    }

    .footer-contacts {
        flex-direction: row;
        gap: 8px;
        justify-content: center;
        order: 2;
        flex-wrap: wrap;
    }

    .footer-icon {
        width: 28px;
        height: 28px;
    }

    .footer-icon svg {
        width: 14px;
        height: 14px;
    }

    .footer-phone-link {
        font-size: 12px;
    }

    .footer-email-link {
        font-size: 12px;
    }

    .footer-address {
        font-size: 12px;
    }

    .address-popup {
        bottom: 80px;
        min-width: 240px;
        padding: 15px 20px;
    }

    .address-popup-content p {
        font-size: 14px;
    }

    .page-content h1 {
        font-size: 24px;
        padding-left: 15px;
    }

    .hero-block {
        padding: 25px;
    }

    .hero-sub {
        font-size: 16px;
    }

    ul li, ol li {
        padding-left: 28px;
    }

    ul > li::before,
    ul ul > li::before,
    ul ul ul > li::before,
    ul ul ul ul > li::before,
    ul ul ul ul ul > li::before {
        width: 18px;
        height: 18px;
    }

    .policy-popup-content {
        padding: 20px;
        width: 95%;
    }

    .policy-popup-content h3 {
        font-size: 18px;
    }

    .policy-popup-body p {
        font-size: 14px;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
    }
   
    /* ===== МОБИЛЬНАЯ ВЕРСИЯ СТРАНИЦЫ КОНТАКТЫ ===== */
    .contact-page .content-body {
        font-size: 14px;
        line-height: 1.5;
    }

    .contact-page h1.content-title {
        font-size: 22px;
        padding-left: 12px;
    }

    .contact-page h2 {
        font-size: 18px !important;
        padding-left: 12px !important;
        margin-bottom: 16px !important;
    }

    .contact-page #all-contacts {
        font-size: 13px;
    }

    .contact-page #all-contacts > div {
        gap: 8px;
        padding: 12px !important;
    }

    .contact-page #all-contacts > div > div {
        padding: 8px 0 !important;
    }

    .contact-page #all-contacts strong {
        font-size: 12px;
    }

    .contact-page #all-contacts a {
        font-size: 13px;
    }

    .contact-page #contact-form-wrapper {
        padding: 0 !important;
    }

    .contact-page #contact-form-wrapper h2 {
        font-size: 18px !important;
        padding-left: 12px !important;
    }

    .contact-page #contact-form-wrapper p {
        font-size: 13px;
    }

    .contact-page #contact-form-wrapper input,
    .contact-page #contact-form-wrapper textarea {
        font-size: 14px !important;
        padding: 8px 12px !important;
    }

    .contact-page #contact-form-wrapper button {
        font-size: 16px !important;
        padding: 12px 20px !important;
    }

    .contact-page .content-divider {
        margin: 20px 0 !important;
    }

    .contact-page .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        padding: 12px !important;
    }

    .contact-page .contact-grid > div {
        padding: 4px 0 !important;
    }

    .contact-page .contact-grid strong {
        font-size: 13px;
    }

    /* ===== АДАПТИВНЫЕ КАРТИНКИ ===== */
    .page-content img[alt*="Логотип"],
    .page-content img[alt*="logo"],
    .content-body img {
        max-width: 80% !important;
        margin: 0 auto !important;
        display: block !important;
    }

    .contact-page img {
        max-width: 60% !important;
        margin: 0 auto !important;
    }
}

h3, h4 {
    
    font-weight: 700;
    color: #1A1A1A;
    margin-top: 24px;
    margin-bottom: 12px;
    padding-left: 16px;
    
}
