body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000; /* głęboka czerń */
    color: #e0e0e0; /* jasna szarość */
    line-height: 1.6;
    padding-top: 45px; /* Dodanie miejsca u góry, aby treść nie była zasłonięta menu */
}


.therapists {
    padding: 2em;
    text-align: center;
    background-color: #000000; /* Ciemne tło */
    color: #e0e0e0; /* Jasny tekst */
}

.therapists h3 {
    color: #ffd700; /* Złoty */
    margin-bottom: 1em;
}

.therapist-item {
    display: flex;
    align-items: center;
    margin: 1em auto; /* Automatyczne centrowanie */
    background-color: #121212; /* Głębokie tło */
    border: 1px solid #fe019a; /* Złota obwódka #ffd700 */
    border-radius: 10px;
    overflow: hidden;
    max-width: 900px; /* Maksymalna szerokość */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

/* Sekcja zdjęcia */
.therapist-photo {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.therapist-photo img {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Zaokrąglone rogi */
}

.therapist-photo-slider {
    width: 100%;
    max-width: 500px; /* Możesz dostosować szerokość */
    margin: 20px auto;
}

.therapist-photo-slider img {
    width: 100%; /* Aby zdjęcia były responsywne */
    border-radius: 10px;
}

.therapist-item {
    margin-bottom: 40px;
}

/* Sekcja informacji */
.therapist-info {
    flex: 2;
    padding: 1.5em;
    text-align: left;
}

.therapist-info h4 {
    color: #ffd700; /* Złoty */
    margin-bottom: 0.5em;
}

.therapist-info p {
    margin: 0.2em 0;
    color: #e0e0e0; /* Jasny tekst */
}

.slick-dotted.slick-slider {
	margin-bottom: 30px;
    margin-left: 30px;
    margin-right: 30px;
}


.age-modal {
    display: none; /* Ukryte domyślnie */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9); /* Ciemne tło z przejrzystością */
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.age-modal-content {
    background: #1e1e1e; /* Grafit */
    color: #e0e0e0; /* Jasna szarość */
    padding: 2em;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.age-modal-content h2 {
    color: #FFC107; /* Złoty akcent */
}

.age-modal-content button {
    background: #FFC107; /* Złoty */
    color: #121212; /* Ciemny tekst */
    border: none;
    padding: 0.7em 1.5em;
    margin: 0.5em;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.age-modal-content button:hover {
    background: #e0e0e0; /* Jasna szarość */
    color: #121212; /* Ciemny */
}

       

@media (max-width: 768px) {

    .therapist-item {
        flex-direction: column;
        text-align: center;
    }

    .therapist-photo {
        width: 100%;
        height: 200px;
    }

    .therapist-info {
        text-align: center;
    }
    

}
