/* Основные стили и сброс */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    max-width: 1090px;
    margin: 0 auto;
    background: #1a3a1a;
}

.container {
    padding: 60px 20px;
}

/* Блок 1: Hero - Джунгли заголовок */
#hero {
    background: linear-gradient(135deg, #1a4d1a 0%, #2d5a2d 50%, #1a3a1a 100%);
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #4a7c4a;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 195, 74, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(46, 125, 50, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

#hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

#hero h1 {
    color: #c8e6c9;
    font-size: 2.8em;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

#hero p {
    color: #e8f5e9;
    font-size: 1.2em;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Кнопка CTA в стиле джунглей */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #66bb6a 0%, #43a047 100%);
    color: #ffffff;
    padding: 18px 45px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 50px;
    margin-top: 25px;
    box-shadow: 0 6px 20px rgba(67, 160, 71, 0.4);
    transition: all 0.3s ease;
    border: 3px solid #81c784;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(67, 160, 71, 0.6);
}

/* Блок опинии - Светлый лес */
#opinie {
    background: linear-gradient(180deg, #f1f8e9 0%, #dcedc8 100%);
    border-bottom: 4px solid #aed581;
}

#opinie h2 {
    color: #33691e;
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(51, 105, 30, 0.1);
}

.opinia {
    background: #ffffff;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 15px;
    border-left: 6px solid #7cb342;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.2);
    transition: transform 0.3s ease;
}

.opinia:hover {
    transform: translateX(10px);
}

.opinia h3 {
    color: #558b2f;
    margin-bottom: 12px;
    font-size: 1.3em;
}

.opinia p {
    color: #455a64;
    font-style: italic;
    line-height: 1.7;
}

/* Блок оставить отзыв - Темный подлесок */
#zostaw-opinie {
    background: linear-gradient(135deg, #2e4d2e 0%, #1b3a1b 100%);
    border-bottom: 4px solid #4a7c4a;
}

#zostaw-opinie h2 {
    color: #a5d6a7;
    font-size: 2.3em;
    margin-bottom: 20px;
    text-align: center;
}

#zostaw-opinie p {
    color: #c8e6c9;
    text-align: center;
    margin-bottom: 35px;
    font-size: 1.1em;
}

/* Стили форм */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #c8e6c9;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 1.05em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 3px solid #66bb6a;
    border-radius: 10px;
    font-size: 1em;
    background: #f1f8e9;
    color: #2d2d2d;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #43a047;
    background: #ffffff;
    box-shadow: 0 0 15px rgba(67, 160, 71, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: linear-gradient(135deg, #66bb6a 0%, #43a047 100%);
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(67, 160, 71, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 160, 71, 0.6);
}

/* Блок специалисты - Яркая поляна */
#specjalisci {
    background: linear-gradient(180deg, #c5e1a5 0%, #aed581 100%);
    border-bottom: 4px solid #9ccc65;
}

#specjalisci h2 {
    color: #2e7d32;
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
}

.specjalista {
    background: #ffffff;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 15px;
    border-top: 5px solid #689f38;
    box-shadow: 0 4px 15px rgba(104, 159, 56, 0.25);
}

.specjalista h3 {
    color: #33691e;
    margin-bottom: 12px;
    font-size: 1.4em;
}

.specjalista p {
    color: #455a64;
    line-height: 1.7;
}

/* Блок продукты и статья - Тропический лес */
#produkty {
    background: linear-gradient(180deg, #1b5e20 0%, #2e7d32 100%);
    border-bottom: 4px solid #43a047;
}

#produkty h2 {
    color: #e8f5e9;
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.produkt {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 12px;
    border-left: 6px solid #66bb6a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.produkt h3 {
    color: #2e7d32;
    margin-bottom: 12px;
    font-size: 1.4em;
}

.produkt p {
    color: #37474f;
    line-height: 1.7;
}

/* Стили для статьи - Особое выделение */
.artykul {
    background: linear-gradient(135deg, #fff9c4 0%, #fff59d 100%);
    padding: 35px;
    margin-top: 50px;
    border-radius: 15px;
    border: 5px solid #fbc02d;
    box-shadow: 0 6px 25px rgba(251, 192, 45, 0.4);
}

.artykul h2 {
    color: #f57f17;
    font-size: 2em;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(245, 127, 23, 0.2);
}

.artykul p {
    color: #4e342e;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
    font-size: 1.05em;
}

/* Блок тренинги и медиа - Папоротниковый */
#szkolenia-media {
    background: linear-gradient(180deg, #81c784 0%, #66bb6a 100%);
    border-bottom: 4px solid #4caf50;
}

#szkolenia-media h2 {
    color: #1b5e20;
    font-size: 2.5em;
    margin-bottom: 25px;
    text-align: center;
}

#szkolenia-media p {
    color: #1b3a1b;
    line-height: 1.8;
    font-size: 1.1em;
    text-align: justify;
    background: rgba(255, 255, 255, 0.3);
    padding: 25px;
    border-radius: 10px;
}

/* Блок формы подписки - Мшистый */
#formularz {
    background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
    border-bottom: 4px solid #66bb6a;
}

#formularz h2 {
    color: #e8f5e9;
    font-size: 2.3em;
    margin-bottom: 20px;
    text-align: center;
}

#formularz p {
    color: #c8e6c9;
    text-align: center;
    margin-bottom: 35px;
    font-size: 1.1em;
}

#formularz .form-group label {
    color: #e8f5e9;
}

#formularz .form-group input[type="email"] {
    background: #f1f8e9;
    border-color: #81c784;
}

/* Блок контакты и карта - Земляной */
#kontakt {
    background: linear-gradient(180deg, #8d6e63 0%, #6d4c41 100%);
    border-bottom: 4px solid #5d4037;
}

#kontakt h2 {
    color: #efebe9;
    font-size: 2.5em;
    margin-bottom: 25px;
    text-align: center;
}

#kontakt p {
    color: #d7ccc8;
    font-size: 1.2em;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 35px;
}

#kontakt p strong {
    color: #fff3e0;
    font-size: 1.3em;
}

.mapa {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border: 4px solid #a1887f;
}

.mapa iframe {
    display: block;
}

/* Footer - Ночные джунгли */
footer {
    background: linear-gradient(135deg, #1b5e20 0%, #0d3d0d 100%);
    padding: 30px 20px;
    text-align: center;
    border-top: 4px solid #2e7d32;
}

footer p {
    color: #a5d6a7;
    font-size: 1em;
}

footer .domainName {
    color: #81c784;
    font-weight: bold;
}

/* Общие заголовки h2, h3 */
h2 {
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: currentColor;
    opacity: 0.3;
    border-radius: 2px;
}

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

    #hero {
        min-height: 400px;
    }

    #hero h1 {
        font-size: 1.8em;
    }

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

    .cta-button {
        padding: 15px 35px;
        font-size: 1.1em;
    }

    h2 {
        font-size: 1.8em !important;
    }

    .opinia,
    .specjalista,
    .produkt {
        padding: 20px;
    }

    .artykul {
        padding: 25px 20px;
    }

    .artykul h2 {
        font-size: 1.5em;
    }

    .artykul p {
        font-size: 1em;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
    }

    .submit-button {
        width: 100%;
        padding: 15px;
        font-size: 1.1em;
    }

    .mapa iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    #hero h1 {
        font-size: 1.5em;
    }

    #hero p {
        font-size: 0.95em;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    h2 {
        font-size: 1.5em !important;
    }

    h3 {
        font-size: 1.2em;
    }
}
