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

body {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1.08rem;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #FFFFFF;
}

h1 {
    font-size: 2.7rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
}

h2 {
    font-size: 2.0rem;
    line-height: 1.4;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #1a1a1a;
}

h3 {
    font-size: 1.45rem;
    line-height: 1.4;
    margin-bottom: 10px;
    margin-top: 30px;
    color: #1B5E20;
}

p {
    margin-bottom: 20px;
}

a {
    color: #1B5E20;
    text-decoration: none;
    transition: 0.29s ease;
}

a:hover {
    color: #0d3210;
}

.header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 3px 11px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1B5E20;
    cursor: pointer;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: #2c3e50;
    font-size: 1rem;
}

.nav a:hover {
    color: #1B5E20;
}

.content-wrapper {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.hero-section {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 40px;
}

.hero-content h1 {
    color: #1B5E20;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.3rem;
    color: #2c3e50;
}

.section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.section:nth-child(even) {
    background-color: #F5F8F5;
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 11px rgba(0, 0, 0, 0.05);
    margin: 20px 0;
}

.content-image.float-left {
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
    max-width: 45%;
}

.content-image.float-right {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
    max-width: 45%;
}

.disclaimer-box {
    background-color: #F5F8F5;
    border-left: 4px solid #1B5E20;
    padding: 30px;
    margin: 40px 0;
    border-radius: 4px;
}

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

.cta-box {
    background-color: #F5F8F5;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    margin: 40px 0;
}

.btn-primary {
    display: inline-block;
    background-color: #1B5E20;
    color: #FFFFFF;
    padding: 15px 40px;
    border-radius: 4px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: 0.29s ease;
}

.btn-primary:hover {
    background-color: #0d3210;
    color: #FFFFFF;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto;
    background-color: #F5F8F5;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 11px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: Helvetica, Arial, sans-serif;
}

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

.form-notice {
    background-color: #fff9e6;
    border-left: 4px solid #ffcc00;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 30px 0;
    margin-top: 60px;
}

.footer h4 {
    color: #1B5E20;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer a {
    color: #ffffff;
}

.footer a:hover {
    color: #1B5E20;
}

.footer-content {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #495057;
    font-size: 0.9rem;
}

.faq-item {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #F5F8F5;
    border-radius: 8px;
}

.faq-item h3 {
    margin-top: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -3px 11px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    display: none;
}

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

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

.cookie-banner p {
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
}

.cookie-banner .btn-primary {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    body {
        font-size: 1rem;
    }

    .nav {
        gap: 15px;
        font-size: 0.9rem;
    }

    .hero-section {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .content-image.float-left,
    .content-image.float-right {
        float: none;
        max-width: 100%;
        margin: 20px 0;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-column {
        min-width: 100%;
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-form {
        padding: 30px 20px;
    }
}
