.container h1,
.container h2 {
    font-style: normal;         /* nie kursywa, czytelniejsze */
    color: #004E98;             /* niebieski, spójny */
    text-transform: uppercase;
    font-size: 2.4rem;          /* większy */
    font-weight: 700;
    margin-bottom: 25px;
}


.container h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.container li,
.info-box p {
    font-size: 1.2rem;   /* większy tekst */
    line-height: 1.8;    /* więcej odstępu */
    color: #333;
    margin-bottom: 15px;
    text-align: justify; /* czytelne bloki tekstu */
}
.class-cta .container p{
    font-size: 1.2rem;   /* większy tekst */
    line-height: 1.8;    /* więcej odstępu */
    color: #333;
    margin-bottom: 15px;
    text-align: center; /* czytelne bloki tekstu */
}
.class-description .container p{
    font-size: 1.2rem;   /* większy tekst */
    line-height: 1.8;    /* więcej odstępu */
    color: #333;
    margin-bottom: 15px;
    text-align: justify; /* czytelne bloki tekstu */
}


.class-description, 
.class-program, 
.class-info, 
.class-cta, 
.class-gallery {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
}

.class-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}
.class-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.class-gallery img:hover {
    transform: scale(1.05);
}

.program-list {
    list-style: disc;
    padding-left: 20px;
    text-align: left;
    font-size: 1.05rem;
}

.info-grid {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}
.info-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.class-cta {
    background: #f4f4f4;
    text-align: center;
}
.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #e1306c;
    color: #fff;
    border-radius: 30px;
    margin-top: 20px;
    font-weight: bold;
    transition: 0.3s;
}
.cta-btn:hover {
    background: #c02558;
}




/* HARMONOGRAM */
.class-schedule {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 20px;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
}

.schedule-table th,
.schedule-table td {
        padding: 15px 5px;
    text-align: center;
}

.schedule-table th {
    background-color: #004E98; /* Twój niebieski kolor */
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
}

.schedule-table tbody tr:nth-child(even) {
    background-color: #eeeeee; /* jasny niebieski dla naprzemiennych wierszy */
}

.schedule-table tbody tr:hover {
    background-color: #3A6EA5; /* jaśniejszy niebieski na hover */
    color: #fff;
    transition: 0.3s;
}

/* FAQ */
.class-faq {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
}

.class-faq .faq-item {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, background-color 0.3s;
}

.class-faq .faq-item:hover {
    transform: translateY(-3px);
    background-color: #e6f0fc; /* lekki niebieski hover */
}

.class-faq .faq-item h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
    color: #000000; /* niebieski nagłówków FAQ */
}

.class-faq .faq-item p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

/* CTA */
.class-cta {
    padding: 60px 20px;
    text-align: center; /* zachowaj dla tekstu */
    background-color: #f4f4f4;


}

.class-cta .cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #FF6700;
    color: #fff;
    border-radius: 30px;
    margin-top: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}
.class-cta .container
{
    text-align: center;
}


/* Dodatkowe linki w sekcjach */
.container a {
    color: #004E98;
    text-decoration: none;
    transition: color 0.3s;
}

.container a:hover {
    background-color: #e65a00;
}

/* Styl tylko dla ekranów do 768px szerokości */
@media (max-width: 768px) {
.container li,
.info-box p {
    
    text-align: left; /* czytelne bloki tekstu */
    line-height: 1.7;  
    margin: 0;
}

.class-description .container p{
    
    text-align: left; /* czytelne bloki tekstu */
}
.class-description h1,
.class-program h2,
.class-info h2,
.class-schedule h2,
.class-gallery h2,
.class-cta h2 {
    line-height: 1.3;
    font-size: 1.5rem;     
}
.class-description .container p,
  .class-program li,
  .class-cta p {   
    line-height: 1.8;       
    font-size: 14px;       
    font-weight: 400;      
}
.class-cta p {
    margin: 0 14px 1em;
}

.info-box h3{
    font-size: 1.2rem;
    line-height: 1.2;
}
.info-box p{
    font-size: 1rem;
    line-height: 1.4;
}
.schedule-table
{
    font-size: 0.8rem;
}
}