/* =========================================
   1. RESET & BASE STYLES
   ========================================= */
:root {
    --primary-color: #2d5a27; /* Forest Green */
    --primary-hover: #1e3d1a;
    --secondary-color: #8b5a2b; /* Earthy Brown */
    --text-color: #333333;
    --light-bg: #f9fbf9;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */
.site-header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-list a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.nav-cta {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none !important;
}

.nav-cta:hover {
    background-color: var(--primary-hover);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero-section {
    background-color: var(--light-bg);
    padding: 80px 0;
    text-align: center;
    border-bottom: 4px solid var(--primary-color);
}

.hero-content h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-intro {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 35px;
    color: #555;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(139, 90, 43, 0.3);
}

.cta-button:hover {
    background-color: #6d4620;
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--white);
}

/* =========================================
   4. CONTENT & ARTICLE STYLES
   ========================================= */
.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-section p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* =========================================
   5. COMPARISON SECTION
   ========================================= */
.comparison-section {
    background-color: var(--light-bg);
    padding: 60px 0;
    margin-top: 40px;
    border-radius: 12px;
}

.comparison-section h2 {
    text-align: center;
    border-bottom: none;
    margin-top: 0;
}

.comparison-section > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.comparison-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

.comparison-card h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.comparison-card p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.comparison-card p strong {
    color: var(--secondary-color);
}

/* =========================================
   6. FAQ SECTION
   ========================================= */
.faq-section {
    padding: 60px 0;
}

.faq-section h2 {
    text-align: center;
    border-bottom: none;
    margin-bottom: 40px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #555;
}

/* =========================================
   7. CONTACT SECTION
   ========================================= */
.contact-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
}

.contact-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 15px;
}

.contact-intro {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info .info-item {
    margin-bottom: 30px;
}

.contact-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #a8d5a2;
}

.contact-info p, .contact-info a {
    font-size: 1.1rem;
    color: var(--white);
}

.contact-info a:hover {
    color: #a8d5a2;
    text-decoration: underline;
}

.contact-info .cta-button {
    background-color: var(--white);
    color: var(--primary-color);
    margin-top: 20px;
    text-align: center;
}

.contact-info .cta-button:hover {
    background-color: #f0f0f0;
    color: var(--primary-hover);
}

.contact-map iframe {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* =========================================
   8. FOOTER
   ========================================= */
.site-footer {
    background-color: #1a1a1a;
    color: #aaa;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
}

.site-footer p {
    margin-bottom: 5px;
}

/* =========================================
   9. RESPONSIVE DESIGN (MOBILE)
   ========================================= */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        gap: 15px;
    }

    .nav-list.active {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }
}