@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    color: #2d3436;
    scroll-behavior: smooth;
}

.text-justify {
    text-align: justify;
}

.transition-hover {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.transition-hover:hover {
    transform: translateY(-5px);
    border-color: #0d6efd !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.navbar-brand {
    letter-spacing: -1px;
}

.nav-link:hover {
    color: #0d6efd !important;
}

hr {
    margin: 4rem 0;
}