.hero-background {
    background: linear-gradient(135deg, #FCFCFC 0%, #F8F8F8 50%);
    position: relative;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(11, 152, 158, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-background > * {
    position: relative;
    z-index: 2;
}