/* Sekcja oferty */
.hero {
    background: url('https://cleanlook.pl/images/webp/oferta-hero.webp') center/cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}


.nasza-oferta {
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
                url('https: //cleanlook.pl/images/oferta.jpg') 
                no-repeat center center/cover;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

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

/* Grid dla kart oferty */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Stylizacja kart oferty */
.offer-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

/* Zielone tło dla wybranych kart */
.offer-card.highlight {
    background: #004d26;
    color: white;
}

/* Zaokrąglony dolny prawy róg */
.offer-card::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    bottom: 0;
    right: 0;
    border-radius: 100px 0 0 0;
}

/* Stylizacja ikon */
.icon-container {
    width: 50px;
    height: 50px;
    background-color: #2EB872;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    margin: 0 auto 15px;
}

.icon-container i {
    font-size: 24px;
    color: white;
}

/* Efekt hover */
.offer-card:hover {
    transform: scale(1.05);
}

/* RESPONSYWNOŚĆ */
@media screen and (max-width: 1024px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }
}
/* Sekcja zielonego paska */
.offer-intro {
    background: #004d26;
    padding: 80px 0;
    color: white;
}

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

/* Układ treści */
.offer-intro .offer-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Zdjęcie po lewej */
.offer-intro .offer-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Tekst po prawej */
.offer-intro .offer-text {
    max-width: 600px;
}

.offer-intro .offer-text h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.offer-intro .offer-text p {
    font-size: 16px;
    line-height: 1.6;
}

/* RESPONSYWNOŚĆ */
@media screen and (max-width: 1024px) {
    .offer-intro .offer-content {
        flex-direction: column;
        text-align: center;
    }

    .offer-intro .offer-image img {
        max-width: 80%;
    }

    .offer-intro .offer-text {
        max-width: 100%;
    }
}
