body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f8f8; /* Light background */
    color: #333; /* Dark text */
}
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 24px;
}
.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 3px;
    background-color: #6366f1; /* Indigo 500 */
    border-radius: 9999px;
}
/* Custom scroll behavior for smooth scrolling */
html {
    scroll-behavior: smooth;
}