.rezerwacja {
    padding: 60px 20px;
    background: linear-gradient(to right, #02218f, #0e72e3, #02218f); /* Gradient jako tło */
}

.rezerwacja-container {
    max-width: 1200px;
    margin: 0 auto;
}

.rezerwacja-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.rezerwacja-left,
.rezerwacja-right {
    text-align: center;
}

.rezerwacja-promo-title {
    font-size: 1.8rem;
    color: #ffffff; /* Białe dla kontrastu z gradientem */
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.rezerwacja-promo-subtitle {
    font-size: 2rem;
    color: #ffffff; /* Białe dla czytelności */
    font-weight: 600;
    margin-bottom: 20px;
}

.rezerwacja-certyfikat {
    margin-top: 20px;
}

.rezerwacja-certyfikat img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.rezerwacja-title {
    font-size: 2.5rem;
    color: #ffffff; /* Białe dla spójności */
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.rezerwacja-subtitle {
    font-size: 1.2rem;
    color: #d1d8e0; /* Jasnoszary dla subtelnego kontrastu */
    margin-bottom: 40px;
    line-height: 1.5;
}

.rezerwacja-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.rezerwacja-item {
    background: #ffffff; /* Białe tło dla bloków */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Cień dla kontrastu */
    transition: transform 0.3s ease;
}

.rezerwacja-item:hover {
    transform: translateY(-5px);
}

.rezerwacja-item-title {
    font-size: 1.5rem;
    color: #02218f; /* Ciemny niebieski z gradientu dla spójności */
    margin-bottom: 15px;
    font-weight: 600;
}

.rezerwacja-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #34495e; /* Ciemniejszy szary */
}

.highlight-zadatek {
    font-weight: 700;
    color: #ffffff; /* Białe dla czytelności */
    background-color: #0e72e3; /* Jaśniejszy niebieski z gradientu jako akcent */
    padding: 2px 6px;
    border-radius: 3px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #0e72e3; /* Jaśniejszy niebieski z gradientu */
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #095cbf; /* Ciemniejszy odcień niebieskiego */
    transform: translateY(-2px);
}

/* Responsywność */
@media (min-width: 768px) {
    .rezerwacja-wrapper {
        flex-direction: row;
        justify-content: space-between;
    }
    .rezerwacja-left,
    .rezerwacja-right {
        width: 48%;
    }
    .rezerwacja-content {
        grid-template-columns: 1fr;
    }
    .rezerwacja-certyfikat img {
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .rezerwacja-title {
        font-size: 2.2rem;
    }
    .rezerwacja-item-title {
        font-size: 1.3rem;
    }
    .rezerwacja-subtitle {
        font-size: 1rem;
    }
    .rezerwacja-promo-title {
        font-size: 1.5rem;
    }
    .rezerwacja-promo-subtitle {
        font-size: 1.8rem;
    }
    .rezerwacja-certyfikat img {
        max-width: 300px;
    }
    .rezerwacja-content {
        gap: 20px;
        margin-bottom: 30px;
    }
}