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

body {
    font-family: system-ui, -apple-system, Roboto, "Segoe UI", Helvetica, sans-serif;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #333;
    background: #fff;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

h2 {
    font-size: 1.9rem;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 1.2rem;
    margin-top: 2.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.45rem;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 1rem;
    margin-top: 2rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: #2E7D32;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2E7D32;
    text-decoration: none;
}

.logo:hover {
    opacity: 0.7;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav a {
    color: #333;
    font-weight: 500;
}

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

.container-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-image {
    max-width: 100%;
    height: auto;
    margin: 2rem auto;
    display: block;
    border-radius: 4px;
}

.content-section {
    padding: 3rem 0;
}

.content-image-left,
.content-image-right {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin: 2rem 0;
}

.content-image-left img,
.content-image-right img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.content-image-left {
    flex-direction: row;
}

.content-image-right {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.category-card {
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 4px;
    text-align: center;
}

.category-card img {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
    border-radius: 4px;
}

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

.disclaimer-box {
    background: #f5f5f5;
    border-left: 4px solid #2E7D32;
    padding: 2rem;
    margin: 3rem 0;
}

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

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.cta-section {
    background: #f5f5f5;
    padding: 3rem;
    text-align: center;
    margin: 3rem 0;
    border-radius: 4px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2E7D32;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.cta-button:hover {
    opacity: 0.8;
    color: #fff;
}

.contact-section {
    padding: 3rem 0;
}

.contact-info {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.btn-submit {
    background: #2E7D32;
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.btn-submit:hover {
    opacity: 0.8;
}

.form-disclaimer {
    background: #fffbf0;
    border: 1px solid #ffd700;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #555;
}

footer {
    background: #f5f5f5;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    color: #2E7D32;
    margin-bottom: 1rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    color: #666;
    font-size: 0.95rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid #2E7D32;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
}

.cookie-button {
    background: #2E7D32;
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.cookie-button:hover {
    opacity: 0.8;
}

.policy-content {
    padding: 3rem 0;
}

.policy-content h2 {
    margin-top: 2rem;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .content-image-left,
    .content-image-right {
        flex-direction: column;
    }
    
    .content-image-left img,
    .content-image-right img {
        max-width: 100%;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
