body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #32CD32;
    text-decoration: none;
    cursor: pointer;
}

.nav a {
    margin-left: 2rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #32CD32;
}

.main-content {
    margin-top: 70px;
}

.hero {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section {
    padding: 4rem 0;
}

.section-alt {
    background: #f8f9fa;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.btn-primary {
    background: #32CD32;
    border: none;
    color: #fff;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #28a428;
    color: #fff;
}

.blog-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s;
}

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

.blog-card h3 {
    color: #32CD32;
    margin-bottom: 1rem;
}

.blog-card a {
    color: #32CD32;
    text-decoration: none;
    font-weight: 500;
}

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

.faq-item h3 {
    color: #32CD32;
    margin-bottom: 0.5rem;
}

.footer {
    background: #333;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #32CD32;
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-links a {
    display: block;
    margin-bottom: 0.5rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.disclaimer-box {
    background: #f8f9fa;
    border-left: 4px solid #32CD32;
    padding: 1.5rem;
    margin: 2rem 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

.cookie-banner button {
    background: #32CD32;
    border: none;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 1rem;
}

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

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

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .nav {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    
    .nav a {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
}
