#bedankt {
    padding-top: 120px;
    min-height: 70vh;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bedankt-container {
    max-width: 560px;
    margin: 0 auto;
    padding: 60px 24px 100px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    animation: bedanktFadeIn 0.5s ease;
}

@keyframes bedanktFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.bedankt__icon {
    font-size: 72px;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 28px;
}

.bedankt__title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 14px;
    line-height: 1.2;
}

.bedankt__sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 40px;
}

.bedankt__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 100px;
    background: var(--yellow);
    color: #000;
    text-decoration: none;
    transition: background 0.18s ease;
}

.bedankt__btn:hover {
    background: #e8bc00;
}

@media (max-width: 640px) {
    .bedankt__title {
        font-size: 26px;
    }
}
