body {
    font-family: 'Inter', sans-serif;
}
/* Custom scrollbar for a more modern look */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #e7e7e7;
}
::-webkit-scrollbar-thumb {
    background: #132343;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #7f7f7f;
}
.hero-bg {
    background: #132343;
}
.hero-bg-light {
    background: #132343f5;
}
.feature-icon {
    /* Styled divs for icons */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #132343;
    background-color: #c6eae0;
} 