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

:root {
    --forest-green: #2d5016;
    --leaf-green: #4a7c2c;
    --light-green: #7fb069;
    --cream: #f5f3ed;
    --dark-text: #2c3e20;
    --gray: #6b7966;
    --light-gray: #e8ebe6;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--cream);
}

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

/* Header */
header {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--leaf-green) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 400;
}

/* Main Content */
main {
    padding: 40px 0;
}

section {
    margin-bottom: 60px;
}

h2 {
    color: var(--forest-green);
    font-size: 2.2rem;
    margin-bottom: 25px;
    text-align: center;
}

/* Intro Section */
.intro {
    background: white;
    padding: 50px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin: 40px auto;
}

.intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Company Cards */
.companies {
    padding: 40px 20px;
}

.company-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 35px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid var(--leaf-green);
}

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

.company-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.company-header h3 {
    color: var(--forest-green);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.service-badge {
    background: var(--light-green);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.location {
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 25px;
}

.services h4 {
    color: var(--forest-green);
    font-size: 1.2rem;
    margin-bottom: 12px;
    margin-top: 20px;
}

.services ul {
    list-style: none;
    padding: 0;
}

.services li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--gray);
}

.services li:before {
    content: "🌲";
    position: absolute;
    left: 0;
}

.highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.highlight {
    background: var(--light-gray);
    color: var(--forest-green);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
}

.highlight a {
    color: var(--forest-green);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease;
}

.highlight a:hover {
    color: var(--leaf-green);
    text-decoration: underline;
}

.contact-info {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
    font-size: 1.1rem;
    color: var(--dark-text);
}

.contact-info a {
    color: var(--leaf-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: var(--forest-green);
    text-decoration: underline;
}

/* Info Section */
.info-section {
    background: white;
    padding: 50px 20px;
    border-radius: 12px;
    margin: 40px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: var(--cream);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.info-card h3 {
    color: var(--forest-green);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.info-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Local Info Section */
.local-info {
    background: linear-gradient(to bottom, white 0%, var(--light-gray) 100%);
    padding: 50px 20px;
    border-radius: 12px;
}

.local-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.challenges {
    list-style: none;
    max-width: 800px;
    margin: 30px auto;
    padding: 0;
}

.challenges li {
    background: white;
    padding: 15px 20px;
    margin-bottom: 12px;
    border-radius: 8px;
    padding-left: 50px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.challenges li:before {
    content: "⚠️";
    position: absolute;
    left: 18px;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: var(--forest-green);
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-top: 60px;
}

footer p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: italic;
}

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

    .subtitle {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .company-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .company-card {
        padding: 25px;
    }

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

    .highlights {
        flex-direction: column;
    }

    .highlight {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    header {
        padding: 40px 20px;
    }

    header h1 {
        font-size: 1.6rem;
    }

    .company-header h3 {
        font-size: 1.4rem;
    }

    .intro, .info-section, .local-info {
        padding: 30px 15px;
    }
}
