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

.hero-container {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 40px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 900;
}

.hero p {
    font-size: 20px;
    margin-top: 10px;
}

/* Sekcja About Us */
.about-us {
    background-color: white;
    padding: 80px 0;
    text-align: center;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Tekst sekcji */
.about-text {
    width: 50%;
    text-align: left;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 900;
    color: #111;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-text ul {
    list-style: none;
    padding: 0;
    font-size: 18px;
    color: #333;
}

.about-text li {
    margin-bottom: 10px;
}

/* Zdjęcie */
.about-image {
    width: 50%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;

}

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

    .about-text, .about-image {
        width: 90%;
    }

    .about-text {
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

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

    .about-text h2 {
        font-size: 28px;
    }

    .about-text p,
    .about-text li {
        font-size: 16px;
    }
}
