.footer {
    background-color: #0A2463;
    color: white;
    padding: 80px 20px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer p,
.footer a {
    font-size: 0.95rem;
    color: #ccc;
    text-decoration: none;
    line-height: 1.6;
}

.footer a:hover {
    color: white;
}

.footer-logo {
    font-family: Georgia, serif;
    font-size: 50px;
    letter-spacing: -2px;
    background: white;
    width: 130px;
    border-radius: 20px;
    padding: 2px;
    margin-bottom: 10px;
}

.footer-logo .blue {
    color: #002157;
    font-weight: normal;
    padding-left: 4px;

}

.footer-logo .yellow {
    color: #fcbb01;
    font-weight: normal;
}


.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.footer-socials a:hover {
    background-color: white;
    color: #0A2463;
}

.footer-bottom {
    border-top: 1px solid #444;
    text-align: center;
    padding: 20px;
    color: #aaa;
    font-size: 0.85rem;
    margin-top: 40px;
}