        /* --- ZMIENNE I RESET --- */
        :root {
            --primary: #D81E1E; /* Czerwień z logo */
            --dark: #121212;
            --dark-grey: #1e1e1e;
            --light: #f4f4f4;
            --white: #ffffff;
            --green: #2E7D32; /* Kolor dla Osiedla Leśnego */
            --text-grey: #a0a0a0;
            --transition: all 0.3s ease;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--white);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        /* --- NAGŁÓWEK (MENU) - ZMIANA NA BIAŁE --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98); /* Białe tło */
            border-bottom: 2px solid var(--primary);
            padding: 10px 0;
            transition: var(--transition);
            box-shadow: 0 2px 15px rgba(0,0,0,0.05); /* Delikatny cień pod menu */
        }

        .navbar {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            color: var(--dark); /* Ciemny tekst menu */
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 5px;
        }

        /* Efekt czerwonej kreski pod menu */
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary);
            transition: width 0.3s;
            transform: skewX(-20deg);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            color: var(--dark); /* Ciemny hamburger menu */
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* --- HERO SPLIT SECTION --- */
        .hero-split {
            display: flex;
            height: 100vh;
            width: 100%;
            padding-top: 70px; /* Miejsce na header */
        }

        .split-side {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 40px;
            position: relative;
            overflow: hidden;
            transition: flex 0.5s ease;
        }

        .split-side:hover {
            flex: 1.2;
        }

        /* LEWA STRONA - BUDOWLANKA */
        .side-construction {
            background: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.9)), 
                        url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?q=80&w=1920&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            color: var(--white);
            border-right: 3px solid var(--primary);
        }

        /* PRAWA STRONA - OSIEDLE */
        .side-estate {
            background: linear-gradient(rgba(46, 125, 50, 0.7), rgba(20, 60, 20, 0.85)), 
                        url('img03.png');
            background-size: cover;
            background-position: center;
            color: var(--white);
        }

        .hero-content {
            z-index: 2;
            max-width: 500px;
            animation: fadeIn Up 1s forwards 0.5s;
			justify-items: center;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 900;
            text-transform: uppercase;
            line-height: 1.1;
            margin-bottom: 20px;
            font-style: italic;
        }

        .side-construction .hero-title span { color: var(--primary); }
        .side-estate .hero-title span { color: #81c784; }

        .hero-desc {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: #ddd;
        }

        .btn {
            display: inline-block;
            padding: 12px 35px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 2px;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
            clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
        }
        .btn-primary:hover { background-color: #b01515; }

        .btn-green {
            background-color: var(--white);
            color: var(--green);
            clip-path: polygon(0 0, 92% 0, 100% 100%, 0% 100%);
        }
        .btn-green:hover { background-color: #e8f5e9; transform: translateY(-3px); }

        /* --- LICZNIKI / HISTORIA --- */
        .stats-section {
            background-color: var(--dark);
            color: white;
            padding: 80px 20px;
            position: relative;
        }
        
        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            width: 4px;
            height: 100px;
            background: var(--primary);
            transform: skewX(-20deg);
        }

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

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

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 15px;
            display: inline-block;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60%;
            height: 4px;
            background: var(--primary);
            margin: 10px auto 0;
            transform: skewX(-20deg);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .stat-box {
            background: var(--dark-grey);
            padding: 30px;
            border-left: 5px solid var(--primary);
            margin-top: 30px;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--primary);
            line-height: 1;
        }
        .stat-label {
            font-size: 1.2rem;
            text-transform: uppercase;
            font-weight: 600;
        }

        /* --- USŁUGI --- */
        .services-section {
            padding: 100px 0;
            background-color: var(--light);
        }

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

/* --- Karta usługi ze ściętym rogiem --- */
.service-card {
    background: white;
    padding: 40px 30px;
    
    /* Pasek na dole (będzie ucięty przed rogiem, co wygląda technicznie) */
    border-bottom: 3px solid transparent;
    
    transition: var(--transition);
    position: relative;
    
    /* Zamiast zwykłego box-shadow, używamy filtra, 
       żeby cień dopasował się do ściętego kształtu */
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.05));

    /* TO JEST ODPOWIEDZIALNE ZA ŚCIĘCIE */
    /* Punkty: Lewy-Góra, Prawy-Góra, Prawy-Dół (minus 30px), Dół-Prawy (minus 30px), Lewy-Dół */
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 30px), 
        calc(100% - 30px) 100%, 
        0 100%
    );
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary);
    
    /* Mocniejszy cień po najechaniu */
    filter: drop-shadow(0 15px 20px rgba(0,0,0,0.15));
}

        .service-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .service-card h4 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        /* --- ZESPÓŁ (TEAM) --- */
        .team-section {
            padding: 100px 0;
            background: white;
        }

        .team-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }

        .team-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .team-image img {
            width: 100%;
            border-radius: 4px;
            box-shadow: 20px 20px 0px var(--dark);
        }

        .team-content {
            flex: 1;
            min-width: 300px;
        }

        .quote-box {
            border-left: 4px solid var(--primary);
            padding-left: 20px;
            margin-top: 20px;
            font-style: italic;
            color: #555;
        }

        /* --- KONTAKT --- */
        .contact-section {
            padding: 100px 0;
            background-color: var(--dark);
            color: white;
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .contact-form-container {
            padding: 50px;
            background: var(--dark-grey);
        }

        .contact-info-container {
            padding: 50px;
            background: #181818;
            position: relative;
        }

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

        .form-control {
            width: 100%;
            padding: 15px;
            background: transparent;
            border: 1px solid #444;
            color: white;
            font-family: inherit;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
        }

        .map-container {
            width: 100%;
            height: 300px;
            background: #333;
            margin-top: 30px;
            filter: grayscale(100%) invert(90%);
        }

        /* --- FOOTER --- */
        footer {
            background: black;
            color: #777;
            padding: 30px 0;
            text-align: center;
            font-size: 0.9rem;
            border-top: 2px solid var(--primary);
        }

        /* --- RESPONSYWNOŚĆ --- */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--white); /* Tło menu mobilnego też białe */
                flex-direction: column;
                padding: 20px;
                text-align: center;
                border-bottom: 2px solid var(--primary);
            }
            
            .nav-links.active {
                display: flex;
            }

            .menu-toggle {
                display: block;
            }

            .hero-split {
                flex-direction: column;
                height: auto;
            }

            .split-side {
                padding: 60px 20px;
                min-height: 50vh;
            }
            
            .about-grid, .contact-wrapper {
                grid-template-columns: 1fr;
            }

            .team-image img {
                box-shadow: 10px 10px 0px var(--dark);
            }
            
            .hero-title { font-size: 2rem; }
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }
		
		
/* --- POPRAWIONA SEKCJA O NAS (Timeline) --- */
.timeline-section {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden; /* Zabezpieczenie przed suwakami */
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

/* PIONOWA LINIA - TERAZ PROSTA */
.timeline-container::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px; /* Idealne wyśrodkowanie */
    /* Usunięto transform: skewX - to naprawia błąd najeżdżania */
    z-index: 0;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: transparent;
    width: 50%;
    margin-bottom: 40px;
    box-sizing: border-box;
}

/* Pozycjonowanie lewej i prawej strony */
.left { 
    left: 0; 
}

.right { 
    left: 50%; 
}

/* KROPKI NA OSI */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: var(--white);
    border: 5px solid var(--primary);
    top: 25px;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Pozycjonowanie kropki dla lewej strony (przy linii) */
.left::after { 
    right: -12px; /* Połowa szerokości kropki */
}

/* Pozycjonowanie kropki dla prawej strony (przy linii) */
.right::after { 
    left: -12px; /* Połowa szerokości kropki */
}

/* PUDEŁKO Z TREŚCIĄ */
.timeline-content {
    padding: 30px;
    background-color: #f8f8f8; /* Bardzo jasny szary dla kontrastu z białym tłem */
    position: relative;
    border-radius: 4px;
    border-bottom: 4px solid var(--primary); /* Czerwona linia na dole boxa */
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: left; /* Tekst wyrównany do lewej dla czytelności */
    z-index: 1;
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

/* Strzałka wskazująca na linię (opcjonalne, dodaje stylu) */
.left .timeline-content::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 28px;
    width: 0;
    z-index: 1;
    right: -10px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #f8f8f8;
}

.right .timeline-content::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 28px;
    width: 0;
    z-index: 1;
    left: -10px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent #f8f8f8 transparent transparent;
}

.year-badge {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Tytuły w timeline */
.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.timeline-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* --- RESPONSYWNOŚĆ TIMELINE --- */
@media screen and (max-width: 768px) {
    /* Linia przesuwa się na lewą stronę */
    .timeline-container::after { 
        left: 30px; 
    }
    
    /* Wszystkie elementy na pełną szerokość z marginesem z lewej */
    .timeline-item { 
        width: 100%; 
        padding-left: 70px; 
        padding-right: 20px; 
    }
    
    /* Reset pozycji lewej i prawej strony */
    .timeline-item.right {
        left: 0;
    }
    .timeline-item.left {
        left: 0;
    }

    /* Kropki zawsze z lewej strony */
    .timeline-item::after, .left::after, .right::after { 
        left: 18px; /* Środek linii (30px) minus połowa kropki */
        right: auto;
    }
    
    /* Strzałki zawsze z lewej */
    .left .timeline-content::before, .right .timeline-content::before {
        left: -10px;
        right: auto;
        border-width: 10px 10px 10px 0;
        border-color: transparent #f8f8f8 transparent transparent;
    }
}

/* --- SEKCJA DLACZEGO MY (Korzyści) --- */
.benefits-section {
    background-color: var(--dark);
    color: white;
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.benefit-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    transition: var(--transition);
    
    /* Ścięty róg jak w ofercie */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}

.benefit-box:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.benefit-desc {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
}

/* --- WARIANT 3: Efekt markera --- */
.link-highlight {
    font-weight: 600;
    color: var(--dark);
    /* Gradient, który jest przesunięty na dół */
    background: linear-gradient(to top, var(--primary) 50%, transparent 50%);
    background-size: 100% 200%;
    background-position: top; /* Domyślnie widzimy przezroczystą część */
    transition: background-position 0.3s ease, color 0.3s ease;
    padding: 0 3px; /* Lekki odstęp boków */
}

.link-highlight:hover {
    background-position: bottom; /* Przesuwamy tło, widać kolor */
    color: white; /* Tekst zmienia się na biały dla kontrastu */
}
/* --- Style dla nowej sekcji ZESPÓŁ --- */

/* Wyróżniony pierwszy akapit */
.team-lead {
    font-size: 1.1rem;
    font-weight: 600; /* Półpogrubienie */
    color: var(--dark);
    margin-bottom: 20px;
    border-left: 3px solid var(--primary); /* Czerwona kreska z boku */
    padding-left: 15px;
}

/* Lista cech zespołu */
.team-features {
    margin: 25px 0;
    list-style: none;
}

.team-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.team-features i {
    color: var(--primary); /* Czerwony ptaszek */
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px; /* Wyrównanie do pierwszej linii tekstu */
}

/* Badge na zdjęciu (np. 25 lat doświadczenia) */
.img-badge {
    position: absolute;
    bottom: 30px;
    right: -20px; /* Wystaje poza zdjęcie dla efektu 3D */
    background-color: var(--primary);
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    /* Ścięty róg */
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%, 0% 15%); 
}

/* Responsywność badge'a */
@media (max-width: 768px) {
    .img-badge {
        right: 0;
        bottom: 0;
        padding: 10px;
    }
}
/* --- SEKCJA KOMPLEKSOWA OBSŁUGA --- */
.full-service-section {
    padding: 80px 0;
    background-color: #f4f4f4; /* Jasnoszare tło dla kontrastu */
}

.service-intro {
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: center;
    font-size: 1.1rem;
    color: #555;
}

.checklist-container {
    background: white;
    padding: 50px;
    /* Ścięty róg - znak rozpoznawczy Twojej strony */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary); /* Czerwony akcent na górze */
    position: relative;
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dwie kolumny */
    gap: 20px 40px; /* Odstęp między wierszami i kolumnami */
}

.check-item {
    display: flex;
    align-items: center; /* Wyśrodkowanie ikony względem tekstu */
    padding: 15px 0;
    border-bottom: 1px solid #eee; /* Delikatna linia oddzielająca */
    transition: transform 0.3s ease;
}

.check-item:hover {
    transform: translateX(10px); /* Lekki ruch w prawo po najechaniu */
}

.check-item i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0; /* Zapobiega zgniataniu ikony przy długim tekście */
}

.check-item span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.4;
}

/* Responsywność dla tej sekcji */
@media (max-width: 768px) {
    .checklist-container {
        padding: 30px 20px;
        /* Mniejszy ścięty róg na mobile */
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
    }

    .checklist-grid {
        grid-template-columns: 1fr; /* Jedna kolumna na telefonie */
        gap: 10px;
    }
}

/* --- SEKCJA TECHNOLOGIA --- */
.tech-section {
    padding: 100px 0;
    background-color: var(--white);
}

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

/* KARTA TECHNOLOGICZNA */
.tech-card {
    background: white;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
    border-top: 3px solid transparent;
    position: relative;
    /* Ścięty róg */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
    border: 1px solid #eee;
}

.tech-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.tech-icon-top {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.tech-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.tech-subtitle {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
}

.tech-img-container {
    width: 100%;
    height: 300px;
    background: #f4f4f4;
    margin-bottom: 25px;
    border-radius: 4px;
    overflow: hidden;
}

.tech-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Lub contain, zależnie od zdjęć */
}

/* LISTA WARSTW */
.tech-layers {
    list-style: none;
    font-size: 0.85rem;
}

.tech-layers li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #555;
}

/* Numerki w kółeczkach (Stylizowane na zielone ze zdjęć) */
.layer-num {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background-color: var(--primary); /* Zielony kolor z Favorit Haus */
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

/* KARTA COMING SOON */
.coming-soon-card {
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
}

.coming-soon-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #aaa;
    padding: 20px 0;
}

.coming-soon-content i {
    margin-bottom: 20px;
    color: #ddd;
}

/* --- CECHY PONIŻEJ (FEATURES) --- */
.tech-features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.tech-feature {
    text-align: center;
    padding: 20px;
}

.tf-icon {
    font-size: 3rem;
    color: var(--primary); /* Domyślny czerwony */
    margin-bottom: 20px;
}

/* Specjalny kolor dla ekologii */
.eco-icon {
    color: #6a8e24; /* Zielony */
}

.tech-feature h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.tech-feature p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}
/* --- STYL DLA STRZAŁKI ODNOŚNIKA --- */
.feature-arrow {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary); /* Zielony (lub zmień na var(--primary) dla czerwonego) */
    color: white;
    border-radius: 50%;
    margin-top: 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Sprężysty efekt */
    box-shadow: 0 5px 15px rgba(106, 142, 36, 0.3);
}

.feature-arrow i {
    transition: transform 0.3s ease;
}

/* Efekt po najechaniu */
.feature-arrow:hover {
    transform: scale(1.1); /* Powiększenie kółka */
    background-color: var(--primary); /* Ciemniejszy odcień */
    box-shadow: 0 8px 20px rgba(106, 142, 36, 0.5);
}

.feature-arrow:hover i {
    transform: translateX(3px); /* Przesunięcie samej strzałki w prawo */
}