.header {
    position: relative;
    z-index: 1;
    justify-content: center;
    align-items: center;
}

.header__container {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.header__bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("/images/home-page/ניו\ זילנד\(3\).jpg") no-repeat center
        center / cover !important;
    overflow: hidden; /* כדי שהתמונה לא תצא מהגבולות */
}

.header__bg-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7); /* שכבת כהה מעל התמונה */
}
.hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(36, 88, 78, 0.5);
    padding: clamp(20px, 5vw, 60px);
    border-radius: 12px;
    z-index: 2;
    margin: 0 16px;
}
.hero__container .hero__title {
    font-size: var(--fs-4xl);
}
.sect__lecture {
    position: relative;
    z-index: 0;
    overflow: hidden;
    color: var(--cream-100); /* текст светлый */
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4); /* затемнение фона */
    border-radius: 12px;
}

.sect__lecture::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url("/images/my-story-images/קרואטיה_.jpg") center/cover no-repeat;
    z-index: -1;
}
#lecture-description {
    scroll-margin-top: 100px; /* подстрой под высоту твоей шапки */
}
.list-points {
    list-style-type: disc;
    padding-right: 20px;
    margin-top: 16px;
    margin-bottom: 16px;
}
@media (max-width: 768px) {
    .sect__lecture::before {
        background-position: top;
    }
    .sect__follow-bikes .sect__inner {
        flex-direction: column-reverse;
        gap: 24px;
    }
}
