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

:root {
    --primary-color: #2E7D32;
    --primary-dark: #1B5E20;
    --primary-light: #4CAF50;
    --text-dark: #212121;
    --text-medium: #424242;
    --text-light: #757575;
    --bg-white: #FFFFFF;
    --bg-light: #F5F5F5;
    --bg-lighter: #FAFAFA;
    --border-color: #E0E0E0;
    --shadow: rgba(0, 0, 0, 0.08);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 2px 8px var(--shadow);
    z-index: 1000;
    padding: 16px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.logo:hover {
    color: var(--primary-dark);
}

.nav {
    display: none;
}

.nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 4px 12px var(--shadow);
    padding: 24px;
}

.nav a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 12px 16px;
    transition: color 0.3s;
    font-weight: 500;
}

.nav a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .nav {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
    }
    
    .menu-toggle {
        display: none;
    }
}

.hero {
    margin-top: 70px;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.3;
    max-width: 800px;
}

.hero p {
    font-size: 20px;
    color: var(--text-medium);
    max-width: 700px;
    margin-bottom: 32px;
}

.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background: var(--bg-lighter);
}

.section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 32px;
    line-height: 1.3;
}

.section h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    margin-top: 32px;
}

.section p {
    margin-bottom: 20px;
    color: var(--text-medium);
}

.section ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.section li {
    margin-bottom: 12px;
    color: var(--text-medium);
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow);
    margin: 24px 0;
}

.content-with-image {
    display: grid;
    gap: 32px;
    align-items: start;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .content-with-image {
        grid-template-columns: 1fr 1fr;
    }
    
    .content-with-image.reverse {
        direction: rtl;
    }
    
    .content-with-image.reverse > * {
        direction: ltr;
    }
    
    .content-image {
        max-width: 400px;
    }
}

.products-grid {
    display: grid;
    gap: 32px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 12px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px var(--shadow);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.product-card h3 {
    margin-top: 0;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px var(--shadow);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.disclaimer-box {
    background: #FFF9E6;
    border-left: 4px solid #FFC107;
    padding: 24px;
    border-radius: 4px;
    margin: 32px 0;
}

.disclaimer-box h3 {
    color: #F57C00;
    margin-top: 0;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s, transform 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: var(--bg-white);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer h4 {
    color: var(--primary-light);
    margin-bottom: 16px;
    font-size: 18px;
}

.footer p,
.footer a {
    color: #BDBDBD;
    line-height: 1.8;
    text-decoration: none;
}

.footer a:hover {
    color: var(--bg-white);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    cursor: pointer;
    transition: color 0.3s;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9E9E9E;
    font-size: 14px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal.active {
    display: block;
}

.modal-content {
    background-color: var(--bg-white);
    margin: 5% auto;
    padding: 40px;
    border-radius: 8px;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 24px;
}

.modal-content h3 {
    color: var(--text-dark);
    margin-top: 24px;
    margin-bottom: 12px;
}

.modal-content p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 24px;
    box-shadow: 0 -4px 12px var(--shadow);
    z-index: 1500;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: start;
}

@media (min-width: 768px) {
    .cookie-banner-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookie-banner p {
    margin: 0;
    flex: 1;
}

.cookie-banner .btn {
    background: var(--primary-color);
}

.success-message {
    background: #E8F5E9;
    border-left: 4px solid var(--primary-color);
    padding: 16px 24px;
    border-radius: 4px;
    margin-top: 16px;
    display: none;
}

.success-message.active {
    display: block;
}

.success-message p {
    color: var(--primary-dark);
    margin: 0;
    font-weight: 600;
}
