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

:root {
    --primary-green: #114D33;
    --light-green: #f8faf9;
    --text-dark: #2c3e50;
    --text-gray: #6c757d;
    --border-light: #e9ecef;
    --white: #ffffff;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: linear-gradient(to bottom, var(--white) 0%, var(--light-green) 100%);
    min-height: 100vh;
}

header {
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo:hover {
    opacity: 0.8;
    text-decoration: none;
    color: var(--primary-green);
}

main {
    margin-top: 80px;
    padding: 3rem 0;
}

section {
    padding: 4rem 0;
}

.hero-section {
    padding: 5rem 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-section p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

h1, h2, h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

h2 {
    font-size: 2rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.content-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.content-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.content-with-image {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.content-text {
    flex: 1;
}

.content-image {
    flex: 0 0 300px;
    max-width: 300px;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.content-image.left {
    order: -1;
}

.content-image.right {
    order: 1;
}

.table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

table th {
    background: var(--primary-green);
    color: var(--white);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-light);
}

table tr:hover {
    background: var(--light-green);
}

.btn-learn-more {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-learn-more:hover {
    opacity: 0.85;
    text-decoration: none;
    color: var(--white);
}

.disclaimer-box {
    background: var(--light-green);
    border-left: 4px solid var(--primary-green);
    padding: 1.5rem;
    margin: 2rem 0;
}

.disclaimer-box h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2rem;
    max-width: 600px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
}

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

footer {
    background: var(--white);
    border-top: 1px solid var(--border-light);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

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

.footer-section h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-gray);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--primary-green);
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
}

.cookie-actions {
    flex-shrink: 0;
}

.direct-message {
    background: var(--light-green);
    border: 1px solid var(--primary-green);
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: var(--primary-green);
    margin: 2rem 0;
    border-radius: 4px;
}

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

    .hero-section p {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .content-with-image {
        flex-direction: column;
    }

    .content-image {
        flex: 1;
        max-width: 100%;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    section {
        padding: 2rem 0;
    }
}
