body {
    font-family: 'Inter', sans-serif;
}
.gradient-bg {
    background: linear-gradient(120deg, #1e3a8a 0%, #3b82f6 100%);
}
.section-glow {
    position: relative;
    z-index: 1;
}
.section-glow::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -100px;
    left: -100px;
    right: -100px;
    bottom: -100px;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1), transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}
