.thanks-section {
    padding: 100px 0;
    background-color: #f8fafc;
    min-height: 70vh;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.success-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 40px;
    color: #1a365d;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 40px;
}

.submission-details {
    background-color: #f1f5f9;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.submission-details h3 {
    font-size: 22px;
    color: #1a365d;
    margin-bottom: 20px;
    text-align: center;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #64748b;
}

.detail-value {
    color: #1a365d;
    font-weight: 500;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h3 {
    font-size: 26px;
    color: #1a365d;
    margin-bottom: 30px;
}

.steps-grid {
    display: flex;
    gap: 30px;
    text-align: center;
}

.step-item {
    flex: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step-item p {
    color: #475569;
    line-height: 1.6;
    font-size: 15px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    background-color: #e2e8f0;
    color: #1a365d;
}

.btn-secondary:hover {
    background-color: #cbd5e1;
}

@media (max-width: 768px) {
    .thanks-content {
        padding: 40px 30px;
    }

    .steps-grid {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}