/* Import czcionek z Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Shrikhand&family=Montserrat:wght@400;500;700&display=swap');

/* Reset i podstawowe ustawienia */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif; /* Czcionka tekstowa */
    line-height: 1.6;
    background-color: #FFFFFF; /* Domyślne białe tło */
    color: #000000; /* Domyślny kolor dla mniejszych czcionek */
    overflow-x: hidden; /* Blokuje przewijanie w poziomie */
    margin: 0;
}

main {
    margin: 0; /* Usuwamy domyślne marginesy main */
    padding: 0; /* Usuwamy domyślne paddingi main */
}

/* Ustawienie kolorów dla nagłówków i grubszych czcionek (zachowane kolory i obwódki) */
body.page-index h1,
body.page-index h2,
body.page-index h3,
body.page-index .logo a,
body.page-index .blog-post h3,
body.page-onas h1,
body.page-onas h2,
body.page-onas h3,
body.page-onas .logo a,
body.page-onas .blog-post h3,
body.page-kontakt h1,
body.page-kontakt h2,
body.page-kontakt h3,
body.page-kontakt .logo a,
body.page-kontakt .blog-post h3,
body.page-oferta h1,
body.page-oferta h2,
body.page-oferta h3,
body.page-oferta .logo a,
body.page-oferta .blog-post h3,
body.page-podcast h1,
body.page-podcast h2,
body.page-podcast h3,
body.page-podcast .logo a,
body.page-podcast .blog-post h3,
body.page-blog h1,
body.page-blog h2,
body.page-blog h3,
body.page-blog .logo a,
body.page-blog .blog-post h3,
body.page-wpis h1,
body.page-wpis h2,
body.page-wpis h3,
body.page-wpis .logo a,
body.page-wpis .blog-post h3 {
    color: #000000; /* Czarny kolor dla nagłówków */
}

/* Mniejsze czcionki (akapity) na czarno */
body.page-index .hero p,
body.page-index section p,
body.page-index .blog-post p,
body.page-index .blog-entry-content p,
body.page-index .sub-section-text p,
body.page-onas .hero p,
body.page-onas section p,
body.page-onas .blog-post p,
body.page-onas .blog-entry-content p,
body.page-onas .sub-section-text p,
body.page-kontakt .hero p,
body.page-kontakt section p,
body.page-kontakt .blog-post p,
body.page-kontakt .blog-entry-content p,
body.page-kontakt .sub-section-text p,
body.page-oferta .hero p,
body.page-oferta section p,
body.page-oferta .blog-post p,
body.page-oferta .blog-entry-content p,
body.page-oferta .sub-section-text p,
body.page-podcast .hero p,
body.page-podcast section p,
body.page-podcast .blog-post p,
body.page-podcast .blog-entry-content p,
body.page-podcast .sub-section-text p,
body.page-blog .hero p,
body.page-blog section p,
body.page-blog .blog-post p,
body.page-blog .blog-entry-content p,
body.page-blog .sub-section-text p,
body.page-wpis .hero p,
body.page-wpis section p,
body.page-wpis .blog-post p,
body.page-wpis .blog-entry-content p,
body.page-wpis .sub-section-text p {
    color: #000000; /* Czarny kolor dla mniejszych czcionek */
}

/* Kolor linków w nawigacji */
.nav-menu li a,
.nav-menu li a:link,
.nav-menu li a:visited {
    color: #f7f7f7; /* Prawie biały kolor dla linków */
    font-size: 18px;
}

/* Hover dla linków */
.nav-menu li a:hover {
    color: #A9A9A9; /* Ciemny szary jako akcent po najechaniu */
}

/* Header i nawigacja */
header {
    background-color: #211f20;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: padding 0.3s ease; /* Płynne przejście dla paddingu */
    vertical-align: top;
}

/* Dodajemy padding-top do main, aby treść nie była zasłaniana przez header */
main {
    padding-top: 30px; /* Wysokość header w stanie normalnym */
}

header.shrunk {
    padding: 5px; /* Mniejszy padding po przewinięciu */
}

.logo {
    width: 140px; /* Początkowa szerokość */
    height: auto; /* Zachowuje proporcje obrazka */
    transition: width 0.3s ease; /* Płynne przejście dla szerokości */
}

header.shrunk .logo {
    width: 75px; /* Mniejsza szerokość po przewinięciu */
}

.logo img {
    width: 100%;
    height: auto;
    display: block; /* Usuwa dodatkowe odstępy pod obrazkiem */
    transition: opacity 0.3s; /* Efekt hover */
}

.logo a:hover img {
    opacity: 0.8; /* Subtelny efekt hover */
}

nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-menu li a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

/* Kolor linków w nawigacji */
.nav-menu li a,
.nav-menu li a:link,
.nav-menu li a:visited {
    color: #f7f7f7; /* Prawie biały kolor dla linków */
}

/* Hover dla linków */
.nav-menu li a:hover {
    color: #A9A9A9; /* Ciemny szary jako akcent po najechaniu */
}

/* Hamburger menu */
.hamburger {
    display: none; /* Domyślnie ukryte w widoku desktop */
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #f7f7f7;
    margin: 2px 0;
    transition: all 0.3s ease;
}

/* Sekcja hero */


.intro-text {
    text-align: center;
    max-width: 100%;
    margin: 40px auto;
    padding: 0 20px;
}

.intro-text h1 {
    font-family: 'Shrikhand', cursive;
    font-size: 36px;
    color: #000000;
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 25px;
    color: #000000;
    min-width: 95%;
    line-height: 1.6;
}


.hero {
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-family: 'Shrikhand', cursive; /* Czcionka tytułowa */
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Przyciski */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #F5E9E2; /* Jasny beż z palety, taki sam jak w .blog-post */
    color: #000000; /* Czarny kolor czcionki */
    text-decoration: none;
    font-size: 35px;
    border-radius: 5px;
    border: 2px solid #000000; /* Cienka, czarna ramka */
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #A9A9A9;
}

/* Sekcje ogólne */
section {
    padding: 60px 20px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0); /* Białe tło z przezroczystością */
}

section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'Shrikhand', cursive; /* Czcionka tytułowa */
}

section h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-family: 'Shrikhand', cursive; /* Czcionka tytułowa */
}

section p {
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Stopka */
footer {
    background-color: #000000; /* Czarny z palety */
    color: #E3D5CA; /* Beż z palety */
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Styl dla podstrony Podcast */
.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.podcast-text p {
    font-size: 22px;
}

.podcast-item {
    position: relative;
}

.podcast-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s;
}

.podcast-item:hover img {
    transform: scale(1.05);
}

/* Styl dla podstrony Blog */
.blog-list {
    margin: 0 4vw; /* Odstępy boczne */
}

.blog-text p {
    font-size: 22px;
}

.blog-post {
    display: flex;
    align-items: center;
    width: 90vw; /* Szerokość wpisu */
    max-width: 1000px; /* Maksymalna szerokość wpisu */
    background-color: #F5E9E2; /* Jasny beż z palety */
    padding: 20px;
    margin: 0 auto 20px; /* Wyśrodkowanie i odstęp dolny */
    border-radius: 10px;
    text-decoration: none; /* Usuwa podkreślenie linku */
    color: inherit; /* Dziedziczy kolor tekstu */
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-post-image {
    flex: 0 0 200px; /* Stała szerokość zdjęcia */
    margin-right: 20px;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.blog-post-content {
    flex: 1; /* Zajmuje resztę dostępnego miejsca */
}

.blog-post h3 {
    margin-bottom: 10px;
    font-size: 24px;
    font-family: 'Shrikhand', cursive; /* Czcionka tytułowa */
}

.blog-post p {
    margin-bottom: 0;
}

/* Styl dla pojedynczego wpisu na blogu */
.blog-entry {
    max-width: 1200px; /* Szersza treść w widoku desktopowym */
    margin: 0 auto;
    padding: 20px;
}

/* Zdjęcie główne z nagłówkiem */
.blog-entry-header {
    position: relative;
    margin-bottom: 40px;
}

.blog-entry-header img {
    width: 100%; /* Zdjęcie na całą szerokość */
    height: auto; /* Proporcjonalna wysokość */
    object-fit: contain; /* Zdjęcie w całości, bez obcinania */
    border-radius: 10px;
}

.blog-entry-header h2 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #E3D5CA; /* Beżowy kolor z palety */
    font-size: 36px;
    text-shadow: none; /* Usuwamy cień */
    -webkit-text-stroke: 1px #000000; /* Czarna obwódka dla WebKit (Chrome, Safari) */
    text-stroke: 1px #000000; /* Czarna obwódka (standard, ale nie wszystkie przeglądarki obsługują) */
    margin: 0;
    font-family: 'Shrikhand', cursive; /* Czcionka tytułowa */
}

/* Treść wpisu */
.blog-entry-content {
    margin-bottom: 40px;
}

.blog-entry-content p {
    margin-bottom: 20px;
}

/* Podsekcje */
.sub-section {
    margin: 30px 0;
}

.sub-section h3 {
    font-size: 35px;
    margin-bottom: 0px;
    font-family: 'Shrikhand', cursive; /* Czcionka tytułowa */
}

.sub-section h1 {
    font-size: 45px;
    margin-bottom: 20px;
    font-family: 'Shrikhand', cursive;
}

.sub-section-content {
    display: flex;
    align-items: center; /* Wyrównanie w pionie */
    gap: 30px;
}

.sub-section-content.sub-section-reverse {
    flex-direction: row-reverse; /* Zdjęcie będzie po prawej */
}

.sub-section-text {
    flex: 2; /* Tekst zajmuje 2/3 szerokości */
}

.sub-section-text p {
    margin-bottom: 5px;
    font-size: 25px; /* Większa czcionka dla lepszej widoczności */
}

.sub-section-image {
    flex: 1;
    width: 400px;
    height: 400px;
}

.sub-section-image img {
    width: 400px;
    height: 400px;
    object-fit: contain;
}

/* Karuzela */
.carousel {
    position: relative;
    width: 100vw;
    height: 85vh;
    margin: -20px;
    margin-left: 0px;
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
    margin: 0;
}

.carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    margin: 0;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    border: none;
    padding: 10px;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 10;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10; /* Upewniamy się, że kropki są nad slajdami */
}

.carousel-dots .dot {
    width: 15px;
    height: 15px;
    background-color: #000000;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.carousel-dots .dot.active {
    opacity: 1;
}

/* Sekcja z zespołem */


.about-text {
    text-align: center;
    width: 100%; 
    margin: 0 auto 40px;
    padding: 0 5px; 
}

.about-text h1 {
    font-family: 'Shrikhand', cursive;
    font-size: 36px;
    color: #000000;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 25px;
    color: #000000;
    min-width: 95%;
    line-height: 1.6;
}


.team {
    padding: 60px 20px;
    background-color: rgba(255, 255, 255, 0);
}

.team h1 {
    font-size: 48px;
    margin-bottom: 40px;
    font-family: 'Shrikhand', cursive;
    text-align: center;
    color: #000000;
}

.team-members {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 90px;
    width: 90vw; /* Zajmuje całą szerokość */
    max-width: 90vw;
    margin: 0 auto; /* Wyśrodkowanie */
}

.team-member {
    text-align: center;
    flex: 0 0 200px; /* Stała szerokość dla każdego elementu */
}

.team-member-image {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.team-member-image:hover {
    transform: scale(1.15);
}

.team-member-image img {
    width: 24vw;
    height: 18vw;
    object-fit: contain; /* Zdjęcie w całości, bez obcinania */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.team-member-image h3 {
    font-size: 30px;
    margin-top: 10px;
    font-family: 'Shrikhand', cursive;
    color: #000000;
}

.team-details-container {
    width: 100%; /* Zajmuje całą szerokość strony */
}

.team-member-details {
    max-height: 0; /* Domyślnie ukryte */
    overflow: hidden;
    transition: max-height 0.5s ease; /* Płynne rozwijanie */
    width: 100%; /* Zajmuje całą szerokość strony */
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.team-member-details.active {
    max-height: 5000px; /* Wartość wystarczająco duża, aby pomieścić treść */
    padding: 20px 0; /* Dodatkowy padding po rozwinięciu */
}

.details-content {
    max-width: 1200px; /* Maksymalna szerokość treści */
    margin: 0 auto;
    text-align: left;
}

.details-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'Shrikhand', cursive;
    color: #000000;
}

.details-content .sub-section {
    margin: 20px 0;
}

.details-content .sub-section h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-family: 'Shrikhand', cursive;
    color: #000000;
}

.details-content .sub-section p {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Sekcja z ofertą */


.offer-text {
    text-align: center;
    max-width: 100%;
    min-width: 75%;
    margin: 0 auto 40px;
    padding: 0 10px;
}

.offer-text h1 {
    font-family: 'Shrikhand', cursive;
    font-size: 36px;
    color: #000000;
    margin-bottom: 20px;
}

.offer-text p {
    font-size: 25px;
    min-width: 95%;
    color: #000000;
    line-height: 1.6;
}


.offer {
    padding: 60px 20px;
    background-color: rgba(255, 255, 255, 0);
}

.offer h1 {
    font-size: 48px;
    margin-bottom: 40px;
    font-family: 'Shrikhand', cursive;
    text-align: center;
    color: #000000;
}

.offer-tables {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1200px; /* Ograniczenie maksymalnej szerokości */
    margin: 0 auto; /* Wyśrodkowanie */
}

.offer-table {
    flex: 1; /* Tabele zajmują równą przestrzeń */
    min-width: 300px; /* Minimalna szerokość, aby tabela była czytelna */
}

.offer-table h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-family: 'Shrikhand', cursive;
    text-align: center;
    color: #000000;
}

.offer-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #F5E9E2; /* Jasny beż z palety */
    border-radius: 10px;
    overflow: hidden; /* Zaokrąglone rogi dla całej tabeli */
}

.offer-table th,
.offer-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #E3D5CA; /* Subtelna linia oddzielająca */
}

.offer-table th {
    background-color: #E3D5CA; /* Nieco ciemniejszy beż dla nagłówka */
    font-family: 'Shrikhand', cursive;
    font-size: 18px;
    color: #000000;
}

.offer-table td {
    font-size: 16px;
    color: #000000;
}

.offer-table tr:last-child td {
    border-bottom: none; /* Usuwamy linię w ostatnim wierszu */
}

/* Sekcja kontakt */
.contact {
    padding: 60px 20px;
    background-color: rgba(255, 255, 255, 0); /* Przezroczyste tło, aby widoczne było białe tło strony */
}

.contact h1 {
    font-size: 48px;
    margin-bottom: 40px;
    font-family: 'Shrikhand', cursive;
    text-align: center;
    color: #000000;
}

.contact-info {
    display: flex;
    flex-direction: row; /* Układ poziomy w widoku desktopowym */
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px; /* Ograniczenie maksymalnej szerokości */
    margin: 0 auto;
    gap: 20px;
}

.contact-phones,
.contact-email,
.contact-social {
    flex: 1; /* Każda sekcja zajmuje równą przestrzeń */
    text-align: center;
    min-width: 200px; /* Minimalna szerokość, aby sekcje były czytelne */
}

.contact-phones h2,
.contact-email h2,
.contact-social h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-family: 'Shrikhand', cursive;
    color: #000000;
}

.contact-phones h2 i,
.contact-email h2 i,
.contact-social h2 i {
    margin-right: 10px;
    color: #A68A64; /* Brąz z palety dla ikon */
}

.contact-item {
    margin: 10px 0;
    font-size: 18px;
}

.contact-label {
    font-weight: 500;
    margin-right: 10px;
}

.contact-item i {
    margin-right: 10px;
    color: #A68A64; /* Brąz z palety dla ikon */
}

.contact-item a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #A68A64; /* Brąz z palety jako akcent po najechaniu */
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    font-size: 18px;
    color: #000000;
    text-decoration: none;
    padding: 10px 20px;
    background-color: #F5E9E2; /* Jasny beż z palety */
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
}

.social-link i {
    margin-right: 8px;
    color: #A68A64; /* Brąz z palety dla ikon */
}

.social-link:hover {
    background-color: #A68A64; /* Brąz z palety */
    color: #FFFFFF;
}

.social-link:hover i {
    color: #FFFFFF; /* Biały kolor ikon po najechaniu */
}

@media (min-width: 769px) {
    header {
        position: sticky;
    }

    main {
        padding-top: 0;
        flex: 1 0 auto;
    }
}

@media (max-width: 768px) {
    /* Ogólne ustawienia */
    body {
        overflow-x: hidden;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        margin: 0;
    }

    main {
        padding-top: 0; /* Ustawiane dynamicznie w JS */
        flex: 1 0 auto;
    }

    header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 100;
        padding: 5px;
        min-height: 0; /* Dopasowanie do zawartości (logo) */
        transition: padding 0.3s ease;
    }

    header.shrunk {
        padding: 3px; /* Mniejszy padding w stanie shrunk */
    }

    .logo {
        width: 100px; /* Mniejsza szerokość logo w widoku mobilnym */
    }

    header.shrunk .logo {
        width: 80px; /* Jeszcze mniejsze logo w stanie shrunk */
    }

    .hamburger {
        display: flex;
        margin-right: 5vh;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        left: 0;
        width: 100%;
        background-color: #211f20;
        padding: 20px 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        overflow-x: hidden;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 10px 0;
        text-align: center;
    }

    /* Karuzela */
.carousel {
    position: relative;
    top: 0;
    margin: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    background-color: #ffffff;
}

    .carousel-slides {
        height: 100%;
        display: flex;
        width: 100%;
    }

    .carousel-slide {
        flex: 0 0 100%;
        width: 100%;
        height: 100%;
    }

    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    .carousel-prev,
    .carousel-next {
        font-size: 18px;
        padding: 0px;
    }

    .carousel-dots {
        bottom: 10px;
    }

    .carousel-dots .dot {
        width: 8px;
        height: 8px;
    }

    /* Sekcja O nas */
    .about-us {
        margin-top: 0;
        padding-top: 10px;
    }

    /* Sekcja z najnowszym wpisem */
    .latest-post {
        padding: 40px 15px;
    }

    .latest-post h2 {
        font-size: 28px;
    }

    /* Blog - lista wpisów */
    .blog-list {
        margin: 0;
    }

    .blog-post {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-width: 100%;
        margin: 0 0 15px;
        padding: 15px;
    }

    .blog-post-image {
        flex: 0 0 auto;
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .blog-post h3 {
        font-size: 20px;
    }

    .blog-post p {
        font-size: 16px;
    }

    /* Styl dla pojedynczego wpisu na blogu */
    .blog-entry {
        padding: 15px;
        background-image: none;
    }

    .blog-entry-header img {
        width: 100%;
        height: auto;
    }

    .blog-entry-header h2 {
        font-size: 28px;
        bottom: 15px;
        left: 15px;
    }

    .sub-section-content,
    .sub-section-content.sub-section-reverse {
        flex-direction: column;
    }

    .sub-section-image {
        width: 300px;
        height: 300px;
    }

    .sub-section-image img {
        width: 300px;
        height: 300px;
    }

    .sub-section h3 {
        font-size: 24px;
    }

    .sub-section-text p {
        font-size: 16px;
    }

    /* Sekcja z zespołem */
    .team {
        padding: 40px 15px;
    }

    .team h1 {
        font-size: 36px;
    }

    .team-members {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        gap: 40px;
    }

    .team-member {
        flex: 0 0 auto;
    }

    .team-member-image img {
        width: 150px;
        height: 150px;
    }

    .team-member-image h3 {
        font-size: 24px;
    }

    .details-content h2 {
        font-size: 32px;
    }

    .details-content .sub-section h3 {
        font-size: 24px;
    }

    .details-content .sub-section p {
        font-size: 16px;
    }

    /* Sekcja z ofertą */
    .offer {
        padding: 40px 15px;
    }

    .offer h1 {
        font-size: 36px;
    }

    .offer h2 {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .offer-tables {
        flex-direction: column;
        align-items: center;
    }

    .offer-table {
        width: 100%;
        max-width: 100%;
    }

    .offer-table h2 {
        font-size: 24px;
        margin-bottom: 0px;
    }

    .offer-table h2:last-of-type {
        margin-bottom: 20px;
    }

    .offer-table th,
    .offer-table td {
        padding: 10px;
        font-size: 14px;
    }

    /* Sekcja kontakt */
    .contact {
        padding: 40px 15px;
    }

    .contact h1 {
        font-size: 36px;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .contact-phones,
    .contact-email,
    .contact-social {
        width: 100%;
        max-width: 100%;
    }

    .contact-phones h2,
    .contact-email h2,
    .contact-social h2 {
        font-size: 24px;
    }

    .contact-item {
        font-size: 16px;
    }

    .social-links {
        flex-direction: column;
        gap: 10px;
    }

    .social-link {
        font-size: 16px;
        padding: 8px 16px;
    }

    /* Styl dla podstrony Podcast */
    .podcast-grid {
        grid-template-columns: 1fr;
    }

    .podcast-text p,
    .intro-text p, 
    .about-text p,
    .offer-text p {
        font-size: 20px;
    }
}