.white-container {
    background-color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    position: relative;
}

.glow {
    background-image: url("../images/glow.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.white-container img {
    width: 35%;
    height: auto;
    padding-top: 50px;
}

.white-container .thumbnail {
    width: 70%;
    height: auto;
    padding-top: 0;
}

.white-container .title {
    padding-top: 70px;
    padding-bottom: 30px;
    font-size: 50px;
    color: black;
    margin: 0 auto;
    font-weight: bold;
}

.white-container .explanation {
    font-size: 28px;
    color: gray;
    width: 70%;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.3;
}

.white-container .small-explanation {
    font-size: 20px;
    color: gray;
    width: 50%;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.3;
}

.white-container .cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    padding-top: 20px;
    padding-bottom: 40px;
}

.white-container a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 15px;
    border-radius: 15px;
    cursor: pointer;
    box-sizing: border-box;
    min-width: 150px;
}

.white-container .white-pink-btn {
    background-color: white;
    border: 1px solid var(--pink);
    color: var(--pink);
}

.white-container .white-pink-btn:hover {
    background-color: var(--pink);
    color: white;
}

.white-container .pink-white-btn {
    background-color: var(--pink);
    border: 1px solid var(--pink);
    color: white;
}

.white-container .pink-white-btn:hover {
    background-color: var(--pink-dark);
}

.scroll-btn {
    color: grey;
    background: transparent;
    border: none;
    padding: 8px 15px;
    font-size: 30px;
    cursor: pointer;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.scroll-btn:hover {
    color: var(--pink);
}

.scroll-nav {
    position: absolute;
    bottom: 40px;
    right: 50px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}