/* Support-Container */
.support-container {
    position: absolute;
    top: 15vh;
    left: 50%;
    transform: translateX(-50%);
    width: 80%; /* Container auf 80% Breite gesetzt */
    background-color: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.support-container h2 {
    text-align: center;
    color: #ff5f7e;
    margin-bottom: 20px;
    font-size: 2.5rem;
}