.site-footer {
    background-color: #002147; /* same as header */
    color: white;
    padding: 40px 20px 20px;
    font-family:'Roboto', sans-serif;
    width: 100%;
}

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

.footer-top {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.footer-logo img {
    width: 120px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255,255,255,0.3);
    margin: 25px 0 15px;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
}

.footer-bottom p{
    margin: 4px 0;
}

.footer-link {
    color: white;
}

.footer-item{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:8px;
}

.footer-item img{
    width:18px;
    height:18px;
    object-fit:contain;
}

.icon {
    width: 32px;
}

@media (max-width: 768px) {

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-logo img {
        margin-bottom: 20px;
    }
}