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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c3a 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 85, 48, 0.8), rgba(74, 124, 58, 0.8)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><path d="M0,100 C150,200 350,0 500,100 C650,200 850,0 1000,100 L1000,300 L0,300 Z" fill="%23e8f5e8"/></svg>');
    color: white;
    padding: 4rem 0;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.9;
}

.hero .quote {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.4;
}

.cta-button {
    display: inline-block;
    background: #d4691a;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
    margin: 0.5rem;
}

.cta-button:hover {
    background: #b8591a;
}

/* Main Content */
main {
    padding: 3rem 0;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    color: #2c5530;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.content-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #4a7c3a;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card ul {
    margin-left: 1.5rem;
}

.card li {
    margin-bottom: 0.5rem;
}

/* Text Links */
.text-link {
    color: #4a7c3a;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s;
}

.text-link:hover {
    border-bottom: 1px solid #4a7c3a;
}

/* Email Signup */
.email-signup {
    background: linear-gradient(135deg, #4a7c3a 0%, #2c5530 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.email-signup h2 {
    color: white;
    margin-bottom: 1rem;
}

.email-form {
    max-width: 500px;
    margin: 2rem auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.email-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.email-form button {
    background: #d4691a;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.email-form button:hover {
    background: #b8591a;
}

/* Footer */
footer {
    background: #2c5530;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

footer h2 {
    color: white;
    margin-bottom: 2rem;
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-card p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-info {
    margin: 2rem 0;
    font-size: 1.1rem;
}

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

.social-links {
    margin: 2rem 0;
}

.social-links a {
    color: white;
    margin: 0 1rem;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Quotes */
.insight-quote {
    background: #f8f9fa;
    border-left: 4px solid #4a7c3a;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 600px;
    font-style: italic;
    font-size: 1.1rem;
    color: #2c5530;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .quote {
        font-size: 1.1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .email-form {
        flex-direction: column;
        align-items: center;
    }
    
    .email-form input {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links a {
        margin: 0 0.5rem;
        font-size: 1rem;
    }
}
