/* css/components/Contact/ThankYouSection.css */
.thank-you-section {
    padding: 6rem 1.5rem;
    text-align: center;
    background-color: var(--koeleman-background); /* Lichte achtergrond */
    min-height: 60vh; /* Zorgt dat het wat body heeft */
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-container {
    max-width: 60ch; /* Goede leesbaarheid */
    margin: 0 auto;
}

.thank-you-title {
    color: var(--koeleman-blue);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.thank-you-subtitle {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
}

.thank-you-button {
    display: inline-block;
    background-color: var(--koeleman-gold);
    color: var(--koeleman-white);
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.thank-you-button:hover {
    transform: scale(1.05);
    background-color: #8a7651; /* Donkerder goud */
}

a:visited {
    color: var(--koeleman-white);
}