
.sunset-gradient {
    position: relative;
    min-height: 100vh;
    background: #f8f9fa;
    z-index: 1;
}

.sunset-gradient::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48%;
    background: radial-gradient(circle at bottom, rgba(234, 190, 13, 0.303), rgba(245, 120, 37, 0.066));
    border-radius: 90% 10% 20% 0;
    z-index: -1;
}
