/* -----------------------------------------
   WRAPPER & LAYOUT
------------------------------------------ */
.thankyou-wrapper {
    background: linear-gradient(180deg, #eef6ff 0%, #ffffff 100%);
    padding: 70px 20px;
}

.thankyou-header,
.thankyou-container {
    max-width: 900px;
    margin: 0 auto;
}

.thankyou-header {
    margin-bottom: 40px;
    text-align: center;
}

.thankyou-card {
    background: #fff;
    padding: 32px;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* -----------------------------------------
   TYPOGRAFIA
------------------------------------------ */
.thankyou-title,
.thankyou-section-title,
.thankyou-price,
.thankyou-total-row strong {
    color: #1a478b;
    font-weight: 800;
}

.thankyou-title {
    font-size: 2.6rem;
    margin-bottom: 12px;
}

.thankyou-subtitle {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto;
}

.thankyou-section-title {
    font-size: 1.75rem;
    margin-bottom: 26px;
}

.thankyou-block-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.thankyou-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.65;
}

/* -----------------------------------------
   LISTA USŁUG
------------------------------------------ */
.thankyou-list {
    list-style: none;
    padding-left: 0;
}

.thankyou-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 10px 14px;
    margin-bottom: 10px;

    background: #f5f7fc;
    border-radius: 12px;
    border: 1px solid #dbe3f4;

    font-weight: 600;
    color: #1a478b;
}

.thankyou-price {
    margin-left: 12px;
}

/* -----------------------------------------
   PODSUMOWANIE
------------------------------------------ */
.thankyou-total-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    margin-top: 12px;
    border-top: 2px solid #dbe3f4;
    font-size: 1.25rem;
    color: #1a478b;
}

/* -----------------------------------------
   RESPONSYWNOŚĆ
------------------------------------------ */
@media (max-width: 600px) {
    .thankyou-card {
        padding: 24px;
    }

    .thankyou-title {
        font-size: 2rem;
    }

    .thankyou-section-title {
        font-size: 1.5rem;
    }
}