/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Poppins:wght@500;700&display=swap');

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
}

/* Block 1: Oferta */
#offer {
    min-height: 430px;
    background: linear-gradient(135deg, #4285f4, #34a853); /* Google blue to green */
    color: #fff;
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#offer h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#offer p {
    font-size: 1.2em;
    max-width: 700px;
    margin-bottom: 30px;
}

#offer .btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ea4335; /* Google red */
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 25px;
    transition: background-color 0.3s;
}

#offer .btn:hover {
    background-color: #fbbc05; /* Google yellow */
}

/* Block 2: Formularz */
#subscribe {
    background-color: #f1f3f4;
    padding: 40px;
    text-align: center;
}

#subscribe h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #202124;
}

#subscribe form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

#subscribe input[type="email"] {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #dadce0;
    border-radius: 4px;
    width: 70%;
}

#subscribe button {
    padding: 10px 20px;
    background-color: #4285f4; /* Google blue */
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

#subscribe button:hover {
    background-color: #34a853; /* Google green */
}

/* Block 3: Produkty i artykuł */
#products {
    background-color: #fff;
    padding: 40px;
}

#products h2, #products h3 {
    color: #202124;
}

#products ul {
    list-style: none;
    margin: 20px 0;
}

#products li {
    padding: 10px 0;
    border-bottom: 1px solid #dadce0;
}

#products h3 {
    margin-top: 40px;
    font-size: 1.5em;
}

#products p {
    background-color: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #4285f4;
    margin-top: 20px;
}

/* Block 4: Specjaliści */
#specialists {
    background-color: #f1f3f4;
    padding: 40px;
}

#specialists h2 {
    color: #202124;
    margin-bottom: 20px;
}

#specialists ul {
    list-style: none;
}

#specialists li {
    padding: 10px 0;
}

/* Block 5: Opinie */
#reviews {
    background-color: #fff;
    padding: 40px;
}

#reviews h2 {
    color: #202124;
    margin-bottom: 20px;
}

#reviews ul {
    list-style: none;
}

#reviews li {
    padding: 10px 0;
    font-style: italic;
}

/* Block 6: Kontakt */
#contact {
    background-color: #f8f9fa;
    padding: 40px;
    text-align: center;
}

#contact h2 {
    color: #202124;
    margin-bottom: 20px;
}

#contact iframe {
    margin-top: 20px;
}

/* Block 7: Footer */
#footer {
    background-color: #202124;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Мобильная версия */
@media (max-width: 768px) {
    body {
        padding: 0 10px;
    }

    #offer {
        min-height: 350px;
        padding: 40px 20px;
    }

    #offer h1 {
        font-size: 2em;
    }

    #offer p {
        font-size: 1em;
    }

    #offer .btn {
        padding: 10px 25px;
    }

    #subscribe form {
        flex-direction: column;
        gap: 15px;
    }

    #subscribe input[type="email"] {
        width: 100%;
    }

    #subscribe button {
        width: 100%;
    }

    #products, #specialists, #reviews, #contact {
        padding: 20px;
    }

    #products h2, #specialists h2, #reviews h2, #contact h2 {
        font-size: 1.5em;
    }
}
