:root {
    --dark-bg: #212529;
    --accent-yellow: #f0ad4e;
    --light-bg: #ffffff;
    --text-color-light: #f8f9fa;
    --text-color-dark: #343a40;
    --geodeta-green: #e69524;
    /* Wyrazista zieleń */
    --geodeta-dark-text: #2c3e50;
    /* Ciemny, czytelny tekst */
    --geodeta-light-text: #7f8c8d;
    /* Szary tekst dla opisów */
    --forest-green: #e69524;
    /* Nowy kolor zielony dla tej sekcji */
    --dark-text: #2c3e50;
    --light-text: #7f8c8d;
    --border-color: #ecf0f1;
    --dark-bg-v2: #192a25;
    /* Głęboka, leśna zieleń/czerń */
    --card-bg: #20362d;
    /* Nieco jaśniejsze tło karty */
    --accent-green-v2: #e69524;
    /* Żywa zieleń dla ikon i akcentów */
    --accent-gold: #f39c12;
    /* Złoty/żółty dla głównego nagłówka */
    --text-light-v2: #e0e0e0;
    /* Jasny tekst dla opisów */
    --text-white: #ffffff;
    --dark-bg: #1a1a1a;
    --green-accent: #f39c12;
    --text-color-light: #e0e0e0;
    --white-text: #ffffff;
    --why-us-bg: #ffffff;
    /* Tło sekcji */
    --why-us-dark-text: #2c3e50;
    --why-us-accent: #f39c12;
    /* Złoty/żółty akcent, jak w inspiracji */
    --why-us-light-text: #7f8c8d;
    --why-us-border-color: #ecf0f1;
    --dark-bg: #1a1a1a;
    --card-bg-dark: #2a2a2a;
    --accent-yellow: #f39c12;
    --light-text: #f39c12;
    --subtle-text: #2c3e50;
    --border-color-dark: #444;
    --dark-bg: #1a1a1a;
    --green-accent: #f39c12;
    --text-color-dark: #333;
    --dark-bg: #1a1a1a;
    --green-accent: #f39c12;
    --text-color-light: #f1f1f1;
    --white-text: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-color-dark);
    line-height: 1.7;
    font-size: 16px;
}

/* Kontener globalny, centrujący treść w sekcjach */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Nagłówek --- */
.main-header {
    background-color: var(--dark-bg);
    padding: 15px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: var(--text-color-light);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--accent-yellow);
}

.header-cta .button {
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.header-cta .button-primary {
    background-color: var(--accent-yellow);
    color: var(--dark-bg);
}

.header-cta .button-primary:hover {
    background-color: #e69524;
    transform: scale(1.05);
}

/* --- Sekcja Hero --- */
#hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: var(--text-color-light);
    background-image: url('/bg1.jpg');
    background-size: cover;
    background-position: right center;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(10, 10, 10) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

/* --- POPRAWKA UKŁADU W SEKCJI HERO --- */
/* Nadpisujemy globalny styl .container tylko dla sekcji #hero */
#hero .container {
    margin: 0;
    /* Usuwamy centrowanie 'margin: 0 auto' */
    padding: 0 8%;
    /* Dodajemy odsunięcie od lewej krawędzi */
    max-width: 1200px;
    /* Nadal ograniczamy szerokość, ale bez centrowania */
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
}

.hero-content h4 {
    color: var(--accent-yellow);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--white-text);
    line-height: 1.1;
    margin-bottom: 25px;
}

.decorative-line {
    width: 60px;
    height: 4px;
    background-color: var(--accent-yellow);
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.button-primary {
    background-color: var(--accent-yellow);
    color: var(--dark-bg);
}

.button-primary:hover {
    background-color: #e69524;
    transform: translateY(-2px);
}

.button-outline {
    border: 2px solid var(--text-color-light);
    color: var(--text-color-light);
}

.button-outline:hover {
    background-color: var(--text-color-light);
    color: var(--dark-bg);
}

/* --- Responsywność --- */
@media (max-width: 992px) {
    .main-nav ul {
        display: none;
    }
}

@media (max-width: 768px) {
    #hero {
        text-align: center;
        background-position: center;
        padding-top:100px;
    }

    #hero::before {
        background: rgba(33, 37, 41, 0.85);
    }

    #hero .container {
        padding: 0 20px;
    }

    /* Standardowy padding na mobilnych */
    .hero-content {
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .decorative-line {
        margin-left: auto;
        margin-right: auto;
    }

    #hero h1 {
        font-size: 3rem;
    }
}

/* --- Style dla nowej sekcji --- */
.geodeta-about-section {
    padding: 80px 0;
    overflow: hidden;
    background-color: #fff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.geodeta-about-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 60px;
}

/* Lewa kolumna - wizualizacje */
.geodeta-visual-wrapper {
    position: relative;
}

.geodeta-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1/1;
    margin: 0 auto;
}

/* Dekoracyjne łuki w tle */
.geodeta-image-container::before,
.geodeta-image-container::after {
    content: '';
    position: absolute;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    z-index: 1;
}

.geodeta-image-container::before {
    width: 130%;
    height: 130%;
    top: -15%;
    left: -15%;
}

.geodeta-image-container::after {
    width: 160%;
    height: 160%;
    top: -30%;
    left: -30%;
}

.geodeta-image-holder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(235, 2, 2, 0.15);
}

.geodeta-image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.geodeta-stat-box {
    position: absolute;
    bottom: 5%;
    right: 0;
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 3;
    text-align: center;
    background-color:rgb(255, 187, 0);
}

.geodeta-stat-box .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 1px 1px 2px black;
    line-height: 1;
   
}

.geodeta-stat-box .label {
    font-size: 0.9rem;
    color: white;
    text-shadow: 1px 1px 2px black;
}

/* Prawa kolumna - tekst */
.geodeta-text-content .pre-header {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--geodeta-green);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.geodeta-text-content h2 {
    font-size: 2.8rem;
    color: var(--geodeta-dark-text);
    line-height: 1.2;
    margin-bottom: 25px;
}

.geodeta-text-content p {
    color: var(--geodeta-light-text);
    line-height: 1.8;
    margin-bottom: 30px;
}

.geodeta-features {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.geodeta-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.geodeta-feature-item svg {
    width: 30px;
    height: 30px;
    color: var(--geodeta-green);
    flex-shrink: 0;
}

.geodeta-feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--geodeta-dark-text);
}

/* Responsywność */
@media (max-width: 992px) {
    .geodeta-about-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .geodeta-visual-wrapper {
        margin-bottom: 40px;
    }

    .geodeta-image-container {
        max-width: 350px;
    }

    .geodeta-features {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .geodeta-text-content h2 {
        font-size: 2.2rem;
    }

    .geodeta-features {
        flex-direction: column;
        align-items: center;
    }
}

/* --- Style dla nowej sekcji "Usługi Leśne" --- */
.forest-services-section {
    padding: 80px 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-text);
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

/* Ozdobny podkreślnik */
.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--forest-green);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    max-width: 700px;
    margin: 30px auto 0 auto;
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.7;
}

.forest-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.forest-service-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.forest-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--forest-green);
}

.forest-card-icon {
    width: 50px;
    height: 50px;
    background-color: var(--dark-text);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.forest-card-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.forest-service-card h3 {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.forest-service-card p {
    font-size: 1rem;
    color: var(--light-text);
    
}

/* --- Style dla sekcji "Usługi Leśne" (z ikonką w tle) --- */

#forest-services {
    background-color: var(--dark-bg, #1a1a1a);
    padding: 80px 0;
}

.section-header-dark {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-dark h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-gold, #D4AF37);
    margin-bottom: 20px;
}

.section-header-dark p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-light-v2, #e0e0e0);
    line-height: 1.7;
}

.service-grid-dark {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card-dark {
    background-color: var(--card-bg, #20362d);
    border: 1px solid #334a40;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    /* DODANA WŁAŚCIWOŚĆ: Potrzebna do pozycjonowania ikonki */
    overflow: hidden;
    /* DODANA WŁAŚCIWOŚĆ: Zapobiega "wystawaniu" ikonki */
}

.service-card-dark:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-green-v2, #2ecc71);
}

.card-icon-dark {
    width: 50px;
    height: 50px;
    color: var(--accent-green-v2, #2ecc71);
    margin-bottom: 25px;
    position: relative;
    /* Ustawienie, aby ikona była nad tłem */
    z-index: 2;
}

.card-icon-dark svg {
    width: 100%;
    height: 100%;
}

.service-card-dark h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-white, #fff);
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
    /* Ustawienie, aby tekst był nad tłem */
    z-index: 2;
}

.service-card-dark p {
    font-size: 0.95rem;
    color: var(--text-light-v2, #e0e0e0);
    flex-grow: 1;
    position: relative;
    /* Ustawienie, aby tekst był nad tłem */
    z-index: 2;
}

.card-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--accent-green-v2, #2ecc71);
    text-decoration: none;
    font-weight: 600;
    align-self: flex-start;
    position: relative;
    /* Ustawienie, aby link był nad tłem */
    z-index: 2;
}

.card-link span {
    transition: transform 0.3s ease;
    display: inline-block;
}

.card-link:hover span {
    transform: translateX(5px);
}

/* --- Zaktualizowana reguła dla ikonki w tle karty --- */
/* Zaktualizowana reguła dla ikonki w tle karty */
.service-card-dark::after {
    content: '';
    position: absolute;
    bottom: -10px;
    /* Poprawione pozycjonowanie */
    right: -10px;
    width: 90px;
    /* Rozmiar ikonki */
    height: 90px;
    z-index: 1;

    /* Wtopienie w tło za pomocą niskiej przezroczystości */
    opacity: 0.05;

    /* ZMIANA: Nowa, bardziej wyrazista ikona drzewa iglastego */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20.49,15.56,13,4.21a1,1,0,0,0-1.72,0L3.51,15.56a1,1,0,0,0,0,1A1,1,0,0,0,4.4,17H6v3a1,1,0,0,0,2,0V17h8v3a1,1,0,0,0,2,0V17h1.6a1,1,0,0,0,.89-1.44ZM12,6.1,16.5,14H7.5Z"/></svg>');

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    /* Obrót dla lepszego efektu wizualnego */
    transform: rotate(-10deg);
}

/* --- Style dla nowej sekcji "Zrębka" --- */
.woodchip-section {
    background-color: var(--dark-bg);
    color: var(--text-color-light);
    padding: 80px 0;
    overflow: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.woodchip-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Więcej miejsca na tekst */
    align-items: center;
    gap: 60px;
}

.woodchip-content h2 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 2.8rem;
    color: var(--white-text);
    margin-bottom: 40px;
}

.feature-list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-list-item .icon {
    flex-shrink: 0;
    color: var(--green-accent);
    width: 30px;
    height: 30px;
    margin-top: 5px;
}

.feature-list-item h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 1.2rem;
    color: var(--white-text);
    margin-bottom: 5px;
}

.feature-list-item p {
    font-size: 1rem;
    color: #aaa;
    line-height: 1.6;
}

.woodchip-image {
    text-align: center;
}

.woodchip-image img {
    max-width: 100%;
    border-radius: 12px;
    border: 3px solid #333;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Animacje */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsywność */
@media (max-width: 992px) {
    .woodchip-layout {
        grid-template-columns: 1fr;
    }

    .woodchip-text {
        order: 2;
        margin-top: 40px;
    }

    .woodchip-image {
        order: 1;
    }
}

/* --- Style dla sekcji "Dlaczego my?" (Wersja ostateczna) --- */

/* Główny kontener sekcji */
section.why-us-section {
    background-color: #ffffff;
    /* Użyłem stałych wartości dla pewności */
    padding: 80px 0;
}

/* Nagłówek sekcji */
section.why-us-section .why-us-header {
    text-align: center;
    margin-bottom: 60px;
}

section.why-us-section .why-us-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #2c3e50;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    margin: 0;
}

/* Ozdobny podkreślnik */
section.why-us-section .title-underline {
    display: block;
    height: 10px;
    margin: 5px auto 0 auto;
    /* Centrowanie góra/dół i auto lewo/prawo */
}

section.why-us-section .why-us-header p {
    max-width: 700px;
    margin: 20px auto 0 auto;
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.7;
}

/* Siatka z listą atutów */
section.why-us-section .why-us-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px 40px;
    max-width: 900px;
    margin: 0 auto;
}

/* Pojedynczy element listy - KLUCZOWA POPRAWKA */
section.why-us-section .why-us-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;

    /* ZMIANA: Grubsza i bardziej widoczna ramka */
    border: 2px solid #d3d1d1;

    transition: all 0.3s ease;
}

section.why-us-section .why-us-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #f39c12;
}

/* Ikona w elemencie listy */
section.why-us-section .why-us-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #f39c12;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.why-us-section .why-us-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

/* Tekst w elemencie listy */
section.why-us-section .why-us-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c3e50;
}


/* Poprawki responsywności (bez zmian, ale dla pewności) */
@media (max-width: 500px) {
    section.why-us-section .why-us-list {
        grid-template-columns: 1fr;
    }
}

/* --- Style dla poprawionej sekcji "Opinie" --- */
.testimonials-section-dark {
    background-color: var(--dark-bg);
    /* Ciemne tło całej sekcji */
    padding: 80px 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header .pre-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--subtle-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white-text);
    /* Jasny tytuł na ciemnym tłe */
    text-transform: uppercase;
    margin: 5px 0 15px 0;
}

.testimonials-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #ccc;
    /* Jasnoszary tekst opisu */
    line-height: 1.7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card-light {
    background-color: var(--light-bg);
    /* ZMIANA: Jasne tło karty */
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--accent-yellow);
    color: var(--dark-bg);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-details {
    flex-grow: 1;
}

.author-details .name {
    font-weight: 600;
    color: var(--dark-text);
    /* ZMIANA: Ciemny tekst na jasnym tle */
}

.author-details .date {
    font-size: 0.85rem;
    color: var(--subtle-text);
    /* ZMIANA: Ciemniejszy szary */
}

.rating {
    margin-bottom: 15px;
    color: var(--accent-yellow);
}

.rating .star {
    display: inline-block;
    width: 20px;
    height: 20px;
}

.testimonial-body {
    color: #555;
    /* ZMIANA: Ciemniejszy tekst dla treści opinii */
    flex-grow: 1;
}

/* --- Style dla nowej sekcji "Galeria" --- */
.gallery-section {
    padding: 80px 0;
    background-color: #fff;
    /* Jasne tło dla tej sekcji */
}

.gallery-section .section-title {
    text-align: center;
    font-size: 2.8rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: var(--text-color-dark, #333);
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    /* 3 kolumny na desktopie */
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    aspect-ratio: 1 / 1;
    /* Kwadratowe kafelki */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-overlay h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* --- Style dla Lightboxa (pełnoekranowy podgląd) --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    /* Domyślnie ukryty */
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
}

.lightbox-btn {
    position: absolute;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 3rem;
    cursor: pointer;
    padding: 20px;
    transition: color 0.3s, transform 0.3s;
    z-index: 2001;
}

.lightbox-btn:hover {
    color: #fff;
    transform: scale(1.2);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Responsywność galerii */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Style dla nowej sekcji "Kontakt" --- */
.contact-section {
    background-color: var(--dark-bg);
    color: var(--text-color-light);
    padding: 80px 0;
    overflow: hidden;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.8rem;
    color: var(--white-text);
    margin-bottom: 30px;
}

.contact-info h2 span {
    color: var(--green-accent);
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h4 {
    font-size: 1.2rem;
    color: var(--green-accent);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.contact-item p,
.contact-item a {
    font-size: 1.1rem;
    color: var(--text-color-light);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.quote-info {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--green-accent);
    margin-top: 30px;
}

.map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #333;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(90%);
    /* Stylowanie mapy w odcieniach pasujących do tła */
}

/* Animacje */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsywność */
@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info {
        text-align: center;
        margin-bottom: 40px;
    }
}

/* --- Style dla nowej sekcji "Galeria" --- */
.gallery-section {
    padding: 80px 0;
    background-color: #f4f4f9;
}

.gallery-section .section-title {
    text-align: center;
    font-size: 2.8rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: var(--text-color-dark, #333);
    margin-bottom: 60px;
}

.carousel-container {
    position: relative;
}

.carousel-window {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    /* Domyślnie dla karuzeli mobilnej */
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    flex: 0 0 100%;
    /* Każdy slajd zajmuje 100% szerokości na mobilnych */
    padding: 0 10px;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* Strzałki nawigacyjne - domyślnie ukryte, widoczne na mobilnych */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(26, 26, 26, 0.7);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    /* Ukryte na desktopie */
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: background-color 0.3s;
}

.carousel-btn:hover {
    background-color: var(--green-accent, #2ecc71);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

/* Kropki nawigacyjne - domyślnie ukryte, widoczne na mobilnych */
.carousel-dots {
    text-align: center;
    padding-top: 20px;
    display: none;
    /* Ukryte na desktopie */
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--green-accent, #2ecc71);
}

/* --- Zmiana w siatkę na Desktopie --- */
@media (min-width: 768px) {
    .carousel-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        transform: none !important;
        /* Wyłączamy przesuwanie z JS */
    }

    .carousel-slide {
        flex-basis: auto;
        /* Resetujemy bazę flexbox */
        padding: 0;
    }
}

/* Aktywacja karuzeli na mobilnych */
@media (max-width: 767px) {

    .carousel-btn,
    .carousel-dots {
        display: flex;
        /* Pokazujemy nawigację tylko na mobilnych */
    }
}

/* --- SEKCJA USŁUGI --- */
.services-section {
    background-color: #212121;
    padding: 60px 20px;
}

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

.section-title {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color:  var(--green-accent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    position: relative;
    background-color: #2A3B32; /* ZMIANA: Ciemnozielone tło */
    padding: 30px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color:  var(--green-accent); /* Złoty kolor nagłówka */
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    border-color:  var(--green-accent);
}

/* --- Ikony Emoji w tle --- */
.service-card::after {
    position: absolute;
    right: 10px;
    bottom: -10px;
    font-size: 90px;
    /* ZMIANA: Złoty, przezroczysty kolor dla efektu "wtopienia" */
    color: rgba(212, 162, 78, 0.1); 
    z-index: 1;
    transition: transform 0.4s ease, color 0.4s ease;
}

.service-card:hover::after {
    transform: rotate(-15deg) scale(1.1);
    color: rgba(212, 162, 78, 0.2); /* Ikona staje się bardziej widoczna */
}

/* --- ZMIANA: Nowe, dopasowane ikony --- */
.service-card:nth-child(1)::after { content: '🌍'; } /* Rekultywacja */
.service-card:nth-child(2)::after { content: '🌿'; } /* Samosiewy */
.service-card:nth-child(3)::after { content: '📐'; } /* Niwelacja */
.service-card:nth-child(4)::after { content: '🪓'; } /* Wycinka */
.service-card:nth-child(5)::after { content: '⚙️'; } /* Zrębkowanie */
.service-card:nth-child(6)::after { content: '✨'; } /* Utrzymanie */
.service-card:nth-child(7)::after { content: '💧'; } /* Drenaże */
.service-card:nth-child(8)::after { content: '🏡'; } /* Zakładanie ogrodów */

/* Wklej ten fragment w pliku style.css */

.section-subtitle {
    text-align: center;
    max-width: 700px; /* Ogranicza szerokość dla lepszej czytelności */
    margin: 0 auto 50px auto; /* Centrowanie i dolny odstęp */
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* --- SEKCJA Z OPISEM I ZDJĘCIAMI --- */
.feature-section {
    background-color: #212121; /* ZMIANA: Ciemnoszare tło */
    padding: 80px 20px;
    overflow: hidden; /* Zapobiega problemom z wystającymi elementami */
}

.feature-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

/* --- Lewa kolumna ze zdjęciami --- */
.image-column {
    position: relative; /* Niezbędne do pozycjonowania mniejszego zdjęcia */
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image {
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transform: rotate(-3deg); /* Lekkie przechylenie zdjęcia */
}

.inset-image {
    position: absolute;
    top: -40px;
    left: 0;
    width: 45%;
    border-radius: 12px;
    border: 5px solid #212121;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* --- Prawa kolumna z tekstem --- */
.text-column {
    flex: 1;
}

.pre-header {
    color: #A2B582; /* Zielonkawy kolor */
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.text-column h2 {
    font-family: 'Oswald', sans-serif;
    color: #fff;
    font-size: 2.8rem;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 25px;
}

.text-column .description {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-button-yellow {
    display: inline-block;
    background-color: var(--green-accent);
    color: #212121;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    margin-top: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button-yellow:hover {
    background-color: var(--green-accent);
    transform: translateY(-3px);
}

/* --- Responsywność dla tej sekcji --- */
@media (max-width: 900px) {
    .feature-container {
        flex-direction: column; /* Układ kolumnowy na mniejszych ekranach */
        gap: 40px;
    }
    .text-column h2 {
        font-size: 2.2rem;
    }
    .image-column {
        margin-top: 40px; /* Dodatkowy margines dla zdjęcia na górze */
    }
}


/* --- SEKCJA "O NAS" (POPRAWIONA WERSJA) --- */
.about-section {
    background-color: #ffffff;
    color: #212121;
    padding: 100px 20px; /* Zwiększony odstęp */
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 80px; /* ZMIANA: Zwiększony odstęp między kolumnami */
    max-width: 1200px; /* Zwiększony kontener dla lepszych proporcji */
    margin: 0 auto;
}

/* --- Lewa kolumna z tekstem --- */
.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 3rem; /* ZMIANA: Lekko większy nagłówek */
    margin-bottom: 25px;
    line-height: 1.1;
}

.about-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem; /* ZMIANA: Dopasowanie rozmiaru czcionki */
}

/* Lista z "ptaszkami" */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start; /* Lepsze wyrównanie przy wieloliniowym tekście */
    margin-bottom: 18px; /* Zwiększony odstęp */
    font-size: 1.05rem;
    font-weight: 500;
}

.feature-list i {
    color: #f39c12;
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 4px; /* Lepsze wyrównanie z tekstem */
}

/* --- Prawa kolumna ze zdjęciami --- */
.about-images {
    position: relative;
    flex: 1;
    /* Zapewnia, że kolumna nie będzie "pusta" */
    min-height: 500px; 
}

.about-main-image {
    width: 100%;
    display: block;
    border-radius: 12px;
    /* ZMIANA: Mocniejszy, bardziej rozproszony cień dla głębi */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-circle-image {
    position: absolute;
    bottom: -60px; /* ZMIANA: Zwiększone wysunięcie */
    left: -60px;
    width: 200px; /* ZMIANA: Powiększone kółko */
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 10px solid #ffffff; /* ZMIANA: Grubsza ramka */
    /* ZMIANA: Dopasowany cień */
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.2);
}

/* --- Responsywność dla tej sekcji --- */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        gap: 20px;
    }
    .about-text {
        order: 2;
        text-align: center;
    }
    .about-images {
        order: 1;
        width: 100%;
        margin-bottom: 50px;
    }
    .feature-list {
        display: inline-block; /* Zapobiega rozciągnięciu na 100% */
        text-align: left;
        margin-left: auto;
        margin-right: auto;
    }
    .about-circle-image {
        width: 150px;
        height: 150px;
        left: -20px;
        bottom: -40px;
    }
}

/* --- Nowy, poprawiony układ zdjęć --- */
.image-column-new {
    position: relative;
    flex: 1;
    min-height: 500px;
    display: flex;
    align-items: center;
    
}

.image-large {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: block;
}

.image-small-accent {
    position: absolute;
    width: 45%; /* ZMIANA: Wyraźnie mniejsze zdjęcie */
    bottom: -40px; /* Wysunięte na dół */
    right: -30px;  /* Wysunięte w prawo */
    border-radius: 12px;
    /* Ciemna ramka dopasowana do tła tworzy efekt "wcięcia" */
    border: 2px solid #212121; 
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.image-small-accent:hover {
    transform: scale(1.05);
}

/* --- NOWA SEKCJA "FEATURE" (CIEMNA) --- */
.feature-section-dark {
    background-color: #212121; /* Zapewnienie ciemnego tła */
    color: #ffffff;
    padding: 80px 20px;
    overflow: hidden;
}

/* Używamy ponownie .feature-container, ale odwracamy kolejność na mobilce */
@media (max-width: 900px) {
    .feature-section-dark .feature-container {
        flex-direction: column;
    }
}

/* --- Układ zdjęć --- */
.image-column-new {
    position: relative;
    flex: 1;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.image-large {
    width: 100%;
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-radius: 16px; /* ZMIANA: Wyraźne zaokrąglenie rogów */
}

.image-small-accent {
    position: absolute;
    width: 45%;
    bottom: -40px;
    right: -30px;
    border: 3px solid #212121;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border-radius: 16px; /* ZMIANA: Wyraźne zaokrąglenie rogów */
}

.image-small-accent:hover {
    transform: scale(1.05);
}

/* --- Ogólne Ustawienia --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a1a;
    color: #fff;
}

/* --- Sekcja Galerii --- */
.gallery-section {
    padding: 80px 20px;
}

.gallery-container {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.gallery-title {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.gallery-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Siatka Zdjęć --- */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.photo-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 25px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.photo-item:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 1.5rem;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.overlay p {
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    transition-delay: 0.1s;
}

.photo-item:hover .overlay h3,
.photo-item:hover .overlay p {
    transform: translateY(0);
}

/* --- Sekcja Galerii (wersja bez napisów) --- */
.gallery-section {
    padding: 80px 20px;
}

.gallery-container {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.gallery-title {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.gallery-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Siatka Zdjęć --- */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ======================= EFEKTY HOVER (BEZ NAPISÓW) ======================= */

/* --- Efekt 1: Proste powiększenie --- */
/* (wcześniej .effect-slide-up) */
.effect-slide-up:hover img {
    transform: scale(1.1);
}

/* --- Efekt 2: Mocniejsze powiększenie --- */
/* (wcześniej .effect-zoom-in) */
.effect-zoom-in:hover img {
    transform: scale(1.15);
}

/* --- Efekt 3: Animowana ramka --- */
.effect-border-run::before,
.effect-border-run::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 3px solid transparent;
    transition: all 0.5s;
}

.effect-border-run::before {
    top: 15px;
    left: 15px;
}

.effect-border-run::after {
    bottom: 15px;
    right: 15px;
}

.effect-border-run:hover::before {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border-top-color: #fff;
    border-right-color: #fff;
    transition-delay: 0.1s;
}

.effect-border-run:hover::after {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border-bottom-color: #fff;
    border-left-color: #fff;
}

/* NIE MA JUŻ PRZYCIEMNIANIA */
.effect-border-run:hover img {
    /* usunięto filter: brightness(0.8) */
    transform: scale(1.05); /* opcjonalne lekkie przybliżenie dla dynamiki */
}

/* --- Sekcja Galerii --- */
.gallery-section {
    background-color: #212121; /* Dodaj tę linijkę */
    padding: 80px 20px;
}

/* --- Statyczna, dwukolumnowa lista usług --- */
.hero-content h1 {
    font-family: 'Oswald', sans-serif;
}

.services-list-container {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Wyrównuje listy do góry */
    gap: 70px; /* Odstęp między kolumnami */
    margin-top: 40px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-list-column {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1; /* Każda kolumna zajmuje tyle samo miejsca */
}

.service-list-column li {
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Delikatny separator */
    font-size: 1.1rem;
    color: #cccccc;
    transition: color 0.3s ease;
}

.service-list-column li:hover {
    color: #fff; /* Lekkie podświetlenie po najechaniu */
}

.service-list-column li:last-child {
    border-bottom: none; /* Usuwa separator przy ostatnim elemencie */
}

.service-list-column li i {
    color: #FCD232; /* Żółty kolor ikony */
    font-size: 1rem;
    
   
    text-align: center;
}
/* --- Style dla sekcji z własnym tłem i białym panelem --- */

/* Ten styl przypisujesz w HTML do sekcji, która ma mieć obrazek w tłe */
.section-with-bg {
    /* ----- TUTAJ WSTAW LINK DO SWOJEGO TŁA ----- */
    background-image: url('/bgg.jpg');
    
    background-size: cover;
    background-position: center;
     /* Tło stoi w miejscu podczas przewijania */
}

/* To jest ten biały panel na treść, który dodaliśmy w HTML */
.content-panel {
    background-color: #ffffff; /* Białe tło dla czytelności */
    color: #212121; /* Ciemny tekst na białym tle */
    max-width: 1200px; /* Maksymalna szerokość panelu */
    margin: 0 auto; /* Centrowanie panelu */
    padding: 60px 40px; /* Wewnętrzne odstępy w panelu */
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-container {
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto', sans-serif;
}

.form-container h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
}

.form-group small {
    display: block;
    color: #7f8c8d;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="file"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f0ad4e; /* Kolor akcentu */
    box-shadow: 0 0 0 3px rgba(240, 173, 78, 0.2);
}

textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 5px;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.9rem;
    color: #555;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: #f0ad4e;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    font-family: 'Oswald', sans-serif;
}

.submit-button:hover {
    background-color: #e69524;
    transform: translateY(-2px);
}