:root {
    --primary-navy: #072ac8;
    --primary-yellow: #ffc600;
    --primary-blue: #1e96fc;
    --background: #f7f7f7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Ubuntu";
}
html {
    scroll-behavior: smooth;
}
body {
    background: #f7f7f7;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* --- Footer --- */
.site-footer {
    padding: 3rem 2rem;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.footer-logo img {
    opacity: 0.9;
}
.footer-links {
    display: flex;
    gap: 1.5rem;
}
.footer-links a {
    font-weight: bold;
    text-decoration: none;
    color: var(--primary-blue);
    border-bottom: 3px solid var(--primary-yellow);
    transition: border-bottom 0.3s ease;
}
.footer-links a:hover {
    border-bottom: 3px solid var(--primary-navy);
}
.footer-social {
    display: flex;
    gap: 1rem;
}
.footer-social a {
    color: var(--primary-blue);
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}
.footer-social a:hover {
    color: var(--primary-navy);
    transform: scale(1.2);
}

/* --- Responsive Styles --- */

@media (max-width: 768px) {
    /* Mobile Footer */
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }
    .footer-links {
        text-align: center;
        flex-direction: column;
    }
}
