/* === GLOBAL === */
body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
}

/* === NAVBAR === */
.navbar {
    padding-top: 10px;
    padding-bottom: 10px;
}

.navbar-brand img {
    margin-right: 10px;
}

.navbar .nav-link {
    color: #12273C;
    transition: 0.3s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #12273C;
    font-weight: 600;
}

.navbar-toggler {
    border: none;
}

.navbar-divider {
    border: 2px solid #113F67;
    margin: 0;
}

.modal-header {
    border-bottom: 1px solid #ddd;
}

@media (max-width: 768px) {
    .navbar-collapse {
        margin-top: 10px;
    }
    .navbar-nav {
        margin-top: 10px;
    }
}

footer {
    background-color: #212529;
    color: #ffffff;
    padding-top: 3rem;
    padding-bottom: 3rem;
    margin-top: 3rem;
}

footer h5 {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 1rem;
}

footer p,
footer li {
    color: #dcdcdc;
    font-size: 0.95rem;
}

footer a {
    color: #0d6efd;
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: #0a58ca;
    text-decoration: underline;
}

footer i {
    color: #0d6efd;
}

footer .contact-link {
    color: #dcdcdc;
}

footer .contact-link:hover {
    color: #0a58ca;
    text-decoration: underline;
}

footer .social-link {
    display: flex;
    align-items: center;
    color: #0d6efd;
    text-decoration: none;
    transition: 0.3s;
}

footer .social-link i {
    transition: 0.3s;
}

footer .social-link span {
    margin-left: 0.5rem;
    font-weight: 600;
    color: #dcdcdc;
    transition: 0.3s;
}

footer .social-link:hover {
    color: #0a58ca;
}

footer .social-link:hover i {
    transform: scale(1.1);
}

footer .social-link:hover span {
    color: #0a58ca;
}

footer hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
}

footer .text-center p {
    margin-bottom: 0;
    color: #dcdcdc;
    font-size: 0.9rem;
}