:root {
    --primary-color: #4caf50; /* Green for primary accents */
    --secondary-color: #81c784; /* Lighter green for highlights */
    --dark-color: #2e7d32; /* Dark green for text and contrasts */
    --light-color: #f1f8e9; /* Light green for background */
    --text-color: #2e2e2e; /* Neutral text color for readability */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
}

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

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo span {
    color: var(--dark-color);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: white;
    color: var(--primary-color);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn:hover {
    background-color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.content-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.content-box {
    width: 100%;
    margin-bottom: 40px;
}

.content-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.content-box p, .content-box ul {
    margin-bottom: 15px;
}

.content-box ul {
    padding-left: 20px;
}

.content-box ul li {
    margin-bottom: 8px;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #dcedc8;
    padding-bottom: 20px;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Contact Section */
.contact-container {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-info {
    font-size: 18px;
    margin-bottom: 20px;
}

.contact-details {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-details p {
    margin-bottom: 15px;
}

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.copyright {
    font-size: 14px;
    color: #a5d6a7;
}

/* Alternating section backgrounds */
.alt-bg {
    background-color: #e8f5e9;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .content-box {
        width: 48%;
    }
}

@media (max-width: 767px) {
    nav ul {
        flex-direction: column;
        align-items: flex-end;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
}
