.site-footer {
    background: #123f56;
    color: #ffffff;
    padding-top: 46px;
    margin-top: 0;
}

.footer-top {
    padding-bottom: 40px;
}

.footer-col {
    padding: 0 26px;
}

.footer-col-border {
    border-left: 1px solid rgba(255, 255, 255, 0.65);
}

.footer-title {
    font-size: 23px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-line {
    width: 28px;
    height: 1px;
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: 26px;
}

.footer-text {
    font-size: 17px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 18px;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    margin: 22px 0;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-box {
    width: 30px;
    height: 30px;
    background: #0b79b3;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 0;
}

.social-box:hover {
    background: #0f90d1;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-links li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 26px;
}

.footer-links li::before {
    content: "»";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    line-height: 1.5;
}

.footer-links a:hover {
    color: #d7eefc;
}

.contact-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.contact-list li {
    margin-bottom: 20px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.5;
}

.contact-row:hover {
    color: #ffffff;
}

.contact-icon {
    width: 20px;
    min-width: 20px;
    font-size: 18px;
    line-height: 1.2;
    margin-top: 4px;
    text-align: center;
}

.contact-description {
    display: block;
    flex: 1;
    margin-left: 0;
}

.footer-subscribe {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-input {
    flex: 1;
    height: 48px;
    border: none;
    outline: none;
    padding: 0 14px;
    font-size: 16px;
    background: #ececec;
    color: #333333;
}

.footer-send-btn {
    background: #0b79b3;
    color: #ffffff;
    border: none;
    height: 45px;
    min-width: 88px;
    padding: 0 20px;
    font-weight: 600;
    cursor: pointer;
}

.footer-send-btn:hover {
    background: #096a9b;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.75);
    padding: 22px 0 14px;
    font-size: 16px;
    color: #ffffff;
}



@media (max-width: 991px) {
    .footer-col {
        padding: 0 12px;
    }

    .footer-col-border {
        border-left: none;
    }

    .footer-title {
        font-size: 21px;
    }

    .footer-text,
    .footer-links a,
    .contact-list li {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .footer-subscribe {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-send-btn {
        width: 100%;
    }
}