/* ==========================================================================
   THANK YOU PAGE STYLES (podziekowanie za platnosc)
   ========================================================================== */

.page-podziekowanie {
    font-family: 'Inter', sans-serif;
}

.thank-you-section {
    background-color: #00016b;
    padding: 80px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 350px);
}

.thank-you-container {
    max-width: 960px !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    text-align: center;
}

.badge-thank-you {
    background: #fffefe;
    color: #00016b;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 24px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.thank-you-content-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px 0;
}

.check-circle-container {
    width: 80px;
    height: 80px;
    background: #f44900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.thank-you-heading {
    color: #ffffff;
    font-size: 36px;
    font-weight: 500;
    line-height: 44px;
    margin: 8px 0 0 0;
}

.thank-you-desc {
    color: #fffefe;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    max-width: 500px;
    margin: 0 0 16px 0;
}

.btn-back-home {
    background: #ffffff;
    color: #00016b;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease-in-out;
}

.btn-back-home:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Responsiveness */
@media (max-width: 768px) {
    .thank-you-section {
        padding: 60px 16px;
    }
    
    .thank-you-container {
        gap: 32px;
    }
    
    .thank-you-content-card {
        padding: 20px 0;
    }
    
    .thank-you-heading {
        font-size: 28px;
        line-height: 36px;
    }
    
    .thank-you-desc {
        font-size: 16px;
        line-height: 24px;
    }
}
