/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5530;
}

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

.nav-links a {
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2c5530;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c50 100%);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

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

.hero .tagline {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #fff;
    color: #2c5530;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-block;
    background-color: #2c5530;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3d6b42;
}

/* Features Section */
.features {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #2c5530;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
}

/* CTA Section */
.cta {
    background-color: #2c5530;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 30px;
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Page Header (for inner pages) */
.page-header {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c50 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
}

/* About Page */
.about-content {
    padding: 60px 20px;
}

.about-section {
    max-width: 800px;
    margin: 0 auto 40px;
}

.about-section h2 {
    color: #2c5530;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.about-section p {
    color: #555;
    line-height: 1.8;
}

.benefits-list {
    margin-top: 15px;
    padding-left: 20px;
}

.benefits-list li {
    color: #555;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.benefits-list li::before {
    content: "✓";
    color: #2c5530;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Contact Page */
.contact-content {
    padding: 60px 20px;
}

.contact-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
    color: #555;
    font-size: 1.1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.contact-card {
    background: #f9f9f9;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
}

.contact-card h3 {
    color: #2c5530;
    margin-bottom: 15px;
}

.contact-card p {
    color: #555;
    margin-bottom: 15px;
}

.contact-link {
    color: #2c5530;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.small-text {
    font-size: 0.9rem;
    color: #777;
}

.contact-note {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background: #fff8e7;
    border-radius: 10px;
    border-left: 4px solid #e6a800;
}

.contact-note h3 {
    color: #333;
    margin-bottom: 10px;
}

.contact-note p {
    color: #555;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 20px;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

footer p {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

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

    .hero .tagline {
        font-size: 1.1rem;
    }

    header nav {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
    }

    .features h2,
    .cta h2 {
        font-size: 1.6rem;
    }

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