/* Thank You Page Styles */

.thank-you-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thank-you-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    margin: 0 auto 1rem;
    display: block;
    width: 80px;
    height: 80px;
    color: var(--color-primary, #d4af37);
}

.thank-you-heading {
    margin-bottom: 1rem;
    font-size: 2rem;
    line-height: 1.2;
}

.thank-you-message {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #666;
}

.thank-you-checklist {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.thank-you-checklist h3 {
    margin-top: 0;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.thank-you-checklist ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thank-you-checklist li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.thank-you-checklist li:last-child {
    margin-bottom: 0;
}

.thank-you-check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--color-primary, #d4af37);
    color: white;
    margin-right: 0.75rem;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.thank-you-footer {
    border-top: 1px solid #e0e0e0;
    padding-top: 1.5rem;
}

.thank-you-footer p {
    margin: 0;
    color: #999;
    font-size: 0.9375rem;
}

.thank-you-footer a {
    color: var(--color-primary, #d4af37);
    text-decoration: none;
}

.thank-you-footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .thank-you-heading {
        font-size: 1.5rem;
    }

    .thank-you-message {
        font-size: 1rem;
    }

    .thank-you-checklist {
        padding: 1rem;
    }

    .thank-you-actions {
        gap: 0.75rem;
    }

    .thank-you-actions .btn {
        flex: 1;
        min-width: calc(50% - 0.375rem);
    }
}

@media (max-width: 480px) {
    .thank-you-section {
        min-height: auto;
        padding: 2rem 1rem;
    }

    .thank-you-heading {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .thank-you-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 0.75rem;
    }

    .thank-you-message {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }

    .thank-you-checklist {
        margin-bottom: 1.5rem;
        padding: 0.75rem;
    }

    .thank-you-checklist h3 {
        font-size: 1rem;
    }

    .thank-you-checklist li {
        font-size: 0.9375rem;
        margin-bottom: 0.5rem;
    }

    .thank-you-actions {
        margin-bottom: 1rem;
    }

    .thank-you-actions .btn {
        width: 100%;
    }
}
.thank-you-checklist {
    background-color: black !important;
}