﻿.site-footer {
    background-color: #0b1f4d;
    color: #ffffff;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
}

.footer-logo {
    width: 95px;
    margin-bottom: 15px;
    background: white;
    padding: 6px;
    border-radius: 8px;
}

.footer-brand h5,
.footer-menu h6,
.footer-contact h6 {
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-brand p,
.footer-contact p {
    color: #d8def0;
    margin-bottom: 8px;
}

.footer-menu a {
    display: block;
    color: #d8def0;
    text-decoration: none;
    margin-bottom: 8px;
}

    .footer-menu a:hover {
        color: #ffffff;
        text-decoration: underline;
    }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 35px;
    padding-top: 15px;
    text-align: center;
    color: #d8def0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
