* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    padding-top: 70px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #2C5F41;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #2C5F41;
}

.hero {
    position: relative;
    min-height: 500px;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    margin-bottom: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 95, 65, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 40px 20px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

section {
    padding: 60px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2C5F41;
    margin-bottom: 40px;
    text-align: center;
}

.content-block {
    margin-bottom: 50px;
}

.content-block h2 {
    font-size: 28px;
    font-weight: 600;
    color: #2C5F41;
    margin-bottom: 20px;
}

.content-block h3 {
    font-size: 22px;
    font-weight: 600;
    color: #8B7355;
    margin-top: 25px;
    margin-bottom: 15px;
}

.content-block p {
    margin-bottom: 15px;
    color: #555;
}

.content-block ul, .content-block ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-block li {
    margin-bottom: 10px;
    color: #555;
}

.image-block {
    margin: 30px 0;
    text-align: center;
}

.image-block img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
}

.three-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.card {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.card h3 {
    color: #2C5F41;
    margin-bottom: 15px;
}

.cta-section {
    background: linear-gradient(135deg, #2C5F41 0%, #8B7355 100%);
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    margin: 60px 0;
    border-radius: 8px;
}

.cta-section h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-section p {
    color: #E8D5C4;
    margin-bottom: 25px;
    font-size: 18px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #D4A574;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #c8955f;
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #2C5F41;
}

footer {
    background-color: #2C5F41;
    color: #E8D5C4;
    padding: 50px 20px 30px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section a {
    color: #E8D5C4;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
}

.disclaimer {
    background-color: #f0f0f0;
    padding: 25px;
    border-left: 4px solid #8B7355;
    margin: 30px 0;
    border-radius: 4px;
}

.disclaimer p {
    margin-bottom: 10px;
    color: #555;
    font-size: 14px;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.faq-item {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
}

.faq-item h3 {
    color: #2C5F41;
    margin-bottom: 15px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2C5F41;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-banner p {
    flex: 1;
    min-width: 300px;
    color: #E8D5C4;
}

.cookie-banner-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-banner .btn {
    padding: 10px 20px;
    font-size: 14px;
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .two-column,
    .three-column {
        grid-template-columns: 1fr;
    }

    nav ul {
        gap: 15px;
        font-size: 14px;
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-buttons {
        justify-content: center;
        width: 100%;
    }
}
