.tp-section {
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    position: relative;
    z-index: 10;
}


.tp-container {
    background: linear-gradient(145deg, rgba(14, 27, 50, 0.9), rgba(6, 12, 24, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 168, 255, 0.15);
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    padding: 60px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tp-container:hover {
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(0, 168, 255, 0.1);
}


.tp-header {
    text-align: center;
    margin-bottom: 50px;
}


.tp-icon {
    font-size: 46px;
    color: #00a8ff;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 168, 255, 0.4));
    animation: floatIcon 3s ease-in-out infinite;
}


@keyframes floatIcon {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}


.tp-header h1 {
    font-family: 'Funnel Sans', sans-serif !important;
    font-size: 42px;
    font-weight: 800 !important;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
}


.tp-subtitle {
    font-family: 'Funnel Sans', sans-serif !important;
    font-size: 18px;
    color: #00a8ff;
    font-weight: 500 !important;
    letter-spacing: 0.5px;
}


.tp-content {
    background: rgba(2, 6, 12, 0.5);
    border-radius: 16px;
    padding: 40px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
    border-left: 4px solid #00a8ff;
}


.tp-content p {
    font-family: 'Funnel Sans', sans-serif !important;
    font-size: 16px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 25px;
    text-align: left;
}


.tp-content p:last-child {
    margin-bottom: 0;
}


.tp-content p:first-of-type {
    font-size: 18px;
    font-weight: 600 !important;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 30px;
}


/* ---------- NAGŁÓWKI SEKCJI ---------- */
.tp-content h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Funnel Sans', sans-serif !important;
    font-size: 24px;
    font-weight: 700 !important;
    color: #ffffff;
    margin: 38px 0 18px;
    letter-spacing: 0.3px;
}

.tp-content h2 i {
    color: #00a8ff;
    font-size: 22px;
}


/* ---------- LISTA "CO OFERUJEMY" ---------- */
.tp-list {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
}

.tp-list li {
    position: relative;
    padding: 8px 0 8px 32px;
    font-family: 'Funnel Sans', sans-serif !important;
    font-size: 16px;
    line-height: 1.6;
    color: #cbd5e1;
}

.tp-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 9px;
    color: #00a8ff;
    font-size: 15px;
}


/* ---------- CENNIK ---------- */
.tp-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 6px 0 18px;
}

.tp-price-card {
    background: rgba(0, 162, 255, 0.08);
    border: 1px solid rgba(0, 162, 255, 0.25);
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.25s ease;
}

.tp-price-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 198, 255, 0.6);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.tp-price-people {
    display: block;
    font-family: 'Funnel Sans', sans-serif !important;
    font-size: 14px;
    font-weight: 600;
    color: #bfe6ff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.tp-price-people i {
    margin-right: 6px;
}

.tp-price-value {
    display: block;
    font-family: 'Funnel Sans', sans-serif !important;
    font-size: 30px;
    font-weight: 800;
    background: linear-gradient(to bottom, #ffffff, #a2d9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tp-price-note {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.55) !important;
    font-style: italic;
    margin-bottom: 10px !important;
}


/* ---------- GODZINY ZAJĘĆ ---------- */
.tp-hours-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(0, 162, 255, 0.08);
    border: 1px solid rgba(0, 162, 255, 0.25);
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 25px;
}

.tp-hours-box i {
    color: #00a8ff;
    font-size: 26px;
    flex-shrink: 0;
}

.tp-hours-box p {
    margin: 0 !important;
    font-size: 16px !important;
    color: #e5eef7 !important;
}

.tp-content strong {
    color: #ffffff;
    font-weight: 700;
}


@media (max-width: 768px) {

    .tp-section {
        padding: 35px 14px;
        min-height: auto;
        align-items: flex-start;
    }

    .tp-container {
        padding: 28px 18px;
        border-radius: 18px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .tp-header {
        margin-bottom: 28px;
    }

    .tp-icon {
        font-size: 34px;
        margin-bottom: 14px;
    }

    .tp-header h1 {
        font-size: 26px;
        line-height: 1.15;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .tp-subtitle {
        display: block;
        font-size: 14px;
        line-height: 1.4;
    }

    .tp-content {
        padding: 22px 16px;
        border-radius: 14px;
        border-left: 3px solid #00a8ff;
    }

    .tp-content p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 18px;
        text-align: left;
    }

    .tp-content p:first-of-type {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 22px;
    }

    .tp-content h2 {
        font-size: 20px;
        margin: 28px 0 14px;
        gap: 10px;
    }

    .tp-content h2 i {
        font-size: 18px;
    }

    .tp-list li {
        font-size: 14px;
        padding-left: 28px;
    }

    .tp-pricing {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .tp-price-card {
        padding: 18px 16px;
    }

    .tp-price-value {
        font-size: 27px;
    }

    .tp-hours-box {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 18px;
    }

    .tp-hours-box p {
        font-size: 14px !important;
    }
}

@media (max-width: 420px) {

    .tp-section {
        padding: 25px 10px;
    }

    .tp-container {
        padding: 24px 14px;
        border-radius: 16px;
    }

    .tp-header h1 {
        font-size: 23px;
    }

    .tp-subtitle {
        font-size: 13px;
    }

    .tp-content {
        padding: 18px 13px;
    }

    .tp-content p {
        font-size: 13.5px;
        line-height: 1.65;
    }
}

@media (min-width: 769px) and (max-width: 1400px) {

    .tp-section {
        padding-top: 30px !important;
    }

}
