.experience-bg {
    position: relative;
    background-image: url('../img/conferenceImageFinesse.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.experience-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.85) 45%,
        rgba(0, 0, 0, 0.95) 100%
    );
    z-index: 1;
}

.experience-bg > * {
    position: relative;
    z-index: 2;
}

.experience-tagline {
    font-size: clamp(24px, 3vw, 36px) !important;
    font-weight: 400;
}

.experience-text {
    font-size: clamp(18px, 2.5vw, 32px);
    font-weight: 600;
    margin-bottom: 1.5rem;
   
}

.experience-text:last-child {
    margin-bottom: 0;
} 