/* First Section */
.custom-first-section {
    height: 100vh;
    background-color: #222;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 2;
    position: relative;
}

/* Parallax Section */
.custom-parallax-container {
    display: flex;
    height: 400vh;
    position: relative;
    z-index: 1;
}

.parallax-item {
    flex: 1;
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: sticky;
    top: 0;
    z-index: 0;
}

/* Next Section */
.custom-next-section {
    position: relative;
    height: 100vh;
    background-color: #111;
    color: white;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.custom-next-content {
    text-align: center;
    max-width: 800px;
}

.custom-next-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.custom-next-content p {
    font-size: 1.25rem;
    line-height: 1.6;
}