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

body {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f3ed 0%, #e8f0e3 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 34px;
}

header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 34px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #689F38;
    font-size: 24px;
    font-weight: 700;
    transition: all 0.4s ease;
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    border-radius: 6px;
}

.logo:hover {
    opacity: 0.8;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
}

nav a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s ease;
    padding: 5px 10px;
    border-radius: 6px;
}

nav a:hover {
    color: #689F38;
    background: rgba(104, 159, 56, 0.1);
}

main {
    margin-top: 80px;
}

section {
    padding: 80px 0;
    background: #fff;
    margin-bottom: 40px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

section:nth-child(even) {
    background: linear-gradient(135deg, #ffffff 0%, #f9fdf7 100%);
}

h1 {
    font-size: 52px;
    color: #689F38;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 42px;
    color: #689F38;
    margin-bottom: 20px;
    font-weight: 700;
}

h3 {
    font-size: 28px;
    color: #555;
    margin-bottom: 15px;
    font-weight: 600;
}

p {
    margin-bottom: 20px;
    color: #555;
}

.hero {
    text-align: center;
    background: linear-gradient(135deg, #689F38 0%, #558B2F 100%);
    color: #fff;
    padding: 120px 0 80px;
}

.hero h1 {
    color: #fff;
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #fff;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin-top: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.image-left {
    order: -1;
}

.text-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.text-content li {
    margin-bottom: 12px;
    color: #555;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: #689F38;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    font-size: 17px;
}

.cta-button:hover {
    background: #558B2F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(104, 159, 56, 0.3);
}

.faq-item {
    background: #f9fdf7;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 6px;
    border-left: 4px solid #689F38;
}

.faq-question {
    font-weight: 600;
    font-size: 19px;
    color: #333;
    margin-bottom: 12px;
}

.faq-answer {
    color: #555;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background: #f9fdf7;
    border-radius: 6px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Lato', Arial, sans-serif;
    transition: all 0.4s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #689F38;
    box-shadow: 0 0 0 3px rgba(104, 159, 56, 0.1);
}

.contact-info {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: #f9fdf7;
    border-radius: 6px;
}

.contact-info h3 {
    color: #689F38;
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

footer {
    background: #2c3e20;
    color: #fff;
    padding: 50px 0 30px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #689F38;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.4s ease;
}

.footer-section a:hover {
    color: #689F38;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

.disclaimer-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 6px;
    padding: 25px;
    margin: 40px 0;
}

.disclaimer-box h3 {
    color: #856404;
    margin-bottom: 15px;
}

.disclaimer-box p {
    color: #856404;
    margin-bottom: 10px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 32, 0.98);
    color: #fff;
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

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

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #fff;
    margin: 20px;
    padding: 40px;
    border-radius: 6px;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: 700;
    color: #aaa;
    cursor: pointer;
    transition: all 0.4s ease;
}

.modal-close:hover {
    color: #689F38;
}

.modal-content h2 {
    color: #689F38;
    margin-bottom: 25px;
}

.modal-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 38px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        justify-content: center;
        gap: 15px;
    }
    
    .content-with-image {
        grid-template-columns: 1fr;
    }
    
    .image-left {
        order: 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    section {
        padding: 50px 20px;
        margin-bottom: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
