/* --- Ogólne ustawienia i Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    max-width: 1090px;
    margin: 0 auto;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

h1, h2, h3 {
    font-family: "Georgia", "Times New Roman", serif;
    color: #1a2a3a;
}

/* --- Blok 1: Header / Offer --- */
header#poczatek {
    background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
    color: #ffffff;
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.propozycja-unikalna h1 {
    color: #d4af37; /* Złoty akcent */
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.propozycja-unikalna p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.przycisk-akcji {
    display: inline-block;
    padding: 15px 35px;
    background-color: #d4af37;
    color: #1a2a3a;
    text-decoration: none;
    font-weight: bold;
    border-radius: 2px;
    transition: background 0.3s ease;
    text-transform: uppercase;
}

.przycisk-akcji:hover {
    background-color: #f1c40f;
}

/* --- Kontrastowe sekcje --- */
section {
    padding: 60px 40px;
}

/* Sekcja Jasna (Opinie, Zespół) */
#opinie-interakcja, #zespol-ekspertow {
    background-color: #ffffff;
}

/* Sekcja Ciemna (Newsletter, Usługi) */
#zapis-newsletter, #spektrum-uslug {
    background-color: #1a2a3a;
    color: #ffffff;
}

#zapis-newsletter h2, #spektrum-uslug h2 {
    color: #d4af37;
}

/* --- Artykuł i Produkty --- */
.wpis-merytoryczny {
    background-color: #fdfdfd;
    color: #333;
    padding: 40px;
    margin-top: 40px;
    border-left: 5px solid #d4af37;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.wpis-merytoryczny h3 {
    margin-bottom: 20px;
}

.wpis-merytoryczny p {
    margin-bottom: 15px;
    text-align: justify;
}

/* --- Formularze i Przyciski --- */
form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    gap: 15px;
}

input[type="email"], textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 0;
    font-family: inherit;
}

button {
    cursor: pointer;
    padding: 12px 25px;
    background-color: #d4af37;
    border: none;
    color: #1a2a3a;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

button:hover {
    background-color: #f1c40f;
}

/* --- Specjaliści i Opinie --- */
ul {
    list-style: none;
    margin-bottom: 20px;
}

ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.lista-opinii article {
    font-style: italic;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 2px solid #d4af37;
}

/* --- Stopka i Mapa --- */
footer {
    background-color: #111;
    color: #ccc;
}

.mapa-i-adres {
    padding: 40px;
}

.copyright {
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
    background-color: #000;
}

/* --- Responsywność (Mobile) --- */
@media (max-width: 768px) {
    header#poczatek {
        min-height: 400px;
        padding: 20px;
    }

    .propozycja-unikalna h1 {
        font-size: 2rem;
    }

    section {
        padding: 40px 20px;
    }

    form {
        max-width: 100%;
    }

    .wpis-merytoryczny {
        padding: 20px;
    }
}
