.background-carousel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.background-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
}

.background-carousel-slide.active {
    opacity: 1;
}

.background-carousel-slide img,
.background-carousel-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.background-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.35) 100%);
    z-index: 1;
}

body {
    position: relative;
    z-index: 1;
}

section {
    background-color: rgba(255, 255, 255, 0.94) !important;
    backdrop-filter: blur(4px);
}

.hero-section {
    background: linear-gradient(160deg, rgba(26, 86, 50, 0.88) 0%, rgba(45, 106, 79, 0.85) 50%, rgba(82, 183, 136, 0.82) 100%) !important;
    backdrop-filter: blur(8px);
}

.hero-section h2,
.hero-section .hero-text,
.hero-section p {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    color: white !important;
}

.hero-section .cta-button {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
}

header {
    background-color: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}
