
/* ============================================
   FOOTER / КОНТАКТЫ
   ============================================ */
.footer {
    background: #1a4475;
}

.footer-content {
    padding: 80px 60px;
}

.footer-h2 {
    font-size: 32px;
    font-weight: 400;
    color: white;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer p {
    font-size: 16px;
    line-height: 2;
    color: white;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.footer a {
    color: #cbaeae;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.footer a:hover {
    border-bottom-color: #cbaeae;
}

@media (max-width: 992px) {
    .footer-content {
        padding: 60px 30px;
    }
    .footer-h2 {
        font-size: 30px;
    }
    .footer p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 40px 20px;
    }
    .footer-h2 {
        font-size: 28px;
    }
}