:root {
    --primary-color: #669900;
    --primary-dark: #557700;
    --text-dark: #2f2f2f;
    --text-light: #686868;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.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(--primary-dark);
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    background-color: var(--primary-color);
    color: white !important;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 16px 48px;
    font-size: 18px;
}

/* Header */
.site-header {
    background-color: var(--text-dark);
    color: white;
    padding: 20px 0;
}

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

.logo {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 20px;
}

.logo-image {
    height: 100px;
    width: auto;
    display: block;
}

.tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

/* Navigation */
.main-nav {
    background-color: white;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 20px 20px;
    color: var(--text-light);
    font-weight: 500;
    border-left: 1px solid var(--border-color);
}

.nav-menu > li:first-child > a {
    border-left: none;
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
    background-color: var(--primary-color);
    color: white !important;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f0f0f0;
    min-width: 250px;
    list-style: none;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 4px 4px;
}

.has-dropdown:hover .dropdown {
    display: block;
}

.dropdown li {
    border-bottom: 1px solid var(--border-color);
}

.dropdown li:last-child {
    border-bottom: none;
}

.dropdown a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
}

.dropdown a:hover {
    background-color: var(--primary-color);
    color: white !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2f2f2f 0%, #4a4a4a 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="40" stroke="rgba(255,255,255,0.05)" stroke-width="1" fill="none"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero ul {
    list-style: none;
    margin: 30px 0;
}

.hero ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 18px;
}

.hero ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

/* News Section */
.news-section {
    padding: 40px 0;
}

.news-box {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.news-box h3 {
    color: var(--text-dark);
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.news-content p {
    margin-bottom: 15px;
}

.news-content strong {
    color: var(--primary-color);
}

/* Services Grid */
.services-grid {
    padding: 80px 0;
    background-color: white;
}

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

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

.service-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(102, 153, 0, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-section .btn {
    background-color: white;
    color: var(--primary-color) !important;
}

.cta-section .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Highlights */
.highlights {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.highlight-item {
    text-align: center;
}

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

.highlight-item p {
    color: var(--text-light);
}

/* Footer */
.site-footer {
    background-color: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-col a:hover {
    color: var(--primary-color);
}

.social-links-footer {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links-footer a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links-footer a:hover {
    background-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Content Pages */
.page-header {
    background: linear-gradient(135deg, #2f2f2f 0%, #4a4a4a 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.page-content {
    padding: 80px 0;
    background-color: white;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.content-wrapper h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.content-wrapper p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-wrapper ul, .content-wrapper ol {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.content-wrapper li {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .header-content {
        justify-content: center;
        text-align: center;
    }

    .main-nav .container {
        flex-direction: column;
        align-items: stretch;
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        top: 10px;
        right: 20px;
    }

    .nav-menu {
        flex-direction: column;
        display: none;
        width: 100%;
    }

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

    .nav-menu > li > a {
        border-left: none;
        border-top: 1px solid var(--border-color);
    }

    .dropdown {
        position: static;
        box-shadow: none;
        display: none;
        border-radius: 0;
    }

    .has-dropdown.active .dropdown {
        display: block;
    }

    .hero h2 {
        font-size: 32px;
    }

    .hero ul li {
        font-size: 16px;
    }

    .services-grid h2,
    .cta-content h2 {
        font-size: 28px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .logo-image {
        height: 60px;
    }

    .tagline {
        font-size: 16px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero h2 {
        font-size: 26px;
    }

    .services-grid,
    .cta-section,
    .highlights,
    .page-content {
        padding: 40px 0;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 16px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .content-wrapper h2 {
        font-size: 26px;
    }
}
