/* Podstawowe style dla ciała strony */
body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f3f3f3;
    color: #232F3E;
    line-height: 1.6;
}

/* Style dla nagłówków */
h1, h2, h3 {
    color: #232F3E;
    font-weight: bold;
}

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

h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Style dla sekcji - kontrastowe oddzielenie bloków */
section {
    padding: 40px 20px;
    margin: 20px auto;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#oferta {
    background-color: #ffffff;
}

#opinie {
    background-color: #fafafa;
}

#specjalisci {
    background-color: #ffffff;
}

#formularz {
    background-color: #fafafa;
}

#produkty {
    background-color: #ffffff;
}

#aktywnosci {
    background-color: #fafafa;
}

#kontakt {
    background-color: #ffffff;
}

/* Style dla przycisków w stylu Amazon */
.button, button[type="submit"] {
    background-color: #FF9900;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button:hover, button[type="submit"]:hover {
    background-color: #E47911;
}

/* Style dla formularza */
form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
}

label {
    margin-bottom: 8px;
    font-weight: bold;
}

input[type="email"], input[type="hidden"] {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #d3d3d3;
    border-radius: 4px;
    font-size: 1em;
}

/* Style dla opinii */
.opinia {
    background-color: #ffffff;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #FF9900;
    border-radius: 4px;
}

/* Style dla specjalistów - użycie grid dla responsywności */
#specjalisci {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.specjalista {
    background-color: #fafafa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Style dla produktów */
#produkty ul {
    list-style-type: none;
    padding: 0;
}

#produkty li {
    background-color: #fafafa;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Style dla artykułu */
article {
    margin-top: 30px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Style dla stopki */
footer {
    background-color: #232F3E;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer p {
    margin: 0;
}

/* Style dla mapy - pełna szerokość */
iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsywna wersja mobilna */
@media (max-width: 768px) {
    section {
        padding: 20px 10px;
        margin: 10px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    form {
        max-width: 100%;
    }

    #specjalisci {
        grid-template-columns: 1fr;
    }

    .button, button[type="submit"] {
        width: 100%;
        padding: 12px;
    }

    iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 0.9em;
    }

    .opinia, .specjalista, #produkty li {
        padding: 10px;
    }
}
