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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #e8f5e9;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-links a:hover {
    color: #2e7d32;
}

/* Hero Section */
.hero {
    background-color: #fff;
    padding: 150px 0 100px;
    text-align: center;
    border-radius: 20px;
    margin: 100px 20px 50px;
}

.hero h1 {
    font-size: 3rem;
    color: #2e7d32;
    margin-bottom: 20px;
}

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

.hero-image {
    width: 100%;
    max-width: 800px;
    height: 400px;
    border-radius: 15px;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

/* Content Sections */
.content-section {
    background-color: #fff;
    padding: 80px 0;
    margin: 30px 20px;
    border-radius: 20px;
}

.section-title {
    font-size: 2.5rem;
    color: #2e7d32;
    text-align: center;
    margin-bottom: 40px;
}

.content-section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 20px;
}

.content-section h3 {
    font-size: 1.5rem;
    color: #1b5e20;
    margin: 30px 0 15px;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #f1f8e9;
    border-radius: 10px;
}

.faq-item h3 {
    color: #2e7d32;
    margin-bottom: 10px;
}

.faq-item p {
    color: #555;
    margin: 0;
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 30px;
    background-color: #f1f8e9;
    border-radius: 10px;
}

.contact-item h4 {
    color: #2e7d32;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-item p {
    color: #555;
    margin: 0;
}

/* Disclaimer */
.disclaimer {
    background-color: #fff3e0;
    padding: 30px;
    margin: 50px 20px;
    border-radius: 10px;
    border-left: 4px solid #ff9800;
}

.disclaimer p {
    color: #e65100;
    margin: 0;
    font-weight: 500;
}

/* Footer */
footer {
    background-color: #fff;
    padding: 40px 0;
    margin-top: 50px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

footer p {
    color: #555;
    margin: 5px 0;
}

footer a {
    color: #2e7d32;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-image {
        height: 250px;
    }
}

/* Print Styles */
@media print {
    header, footer {
        display: none;
    }
    
    body {
        background-color: white;
    }
}