:root {
    --primary-green: #2E7D32;
    --secondary-green: #4CAF50;
    --light-green: #8BC34A;
    --dark-green: #1B5E20;
    --accent-color: #FF9800;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #F9FDF8;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: white;
}

/* Header Styles */
.header-top {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.header-contact {
    display: inline-flex;
    align-items: center;
    margin-right: 25px;
}

.header-contact i {
    margin-right: 8px;
    color: var(--light-green);
}

.header-social-icon-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

.header-social-icon-list li {
    margin-left: 15px;
}

.header-social-icon-list a {
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.header-social-icon-list a:hover {
    color: var(--light-green);
    transform: translateY(-3px);
}

.header-bottom {
    padding: 15px 0;
    background: white;
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    font-size: 32px;
    color: var(--primary-green);
    margin-right: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-green);
}

.logo-text span {
    color: var(--accent-color);
}

/* Navigation */
.main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

.main-menu li {
    position: relative;
    margin-left: 25px;
}

.main-menu a {
    color: var(--dark-green);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 0;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.main-menu a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}

.main-menu a:hover {
    color: var(--primary-green);
}

.main-menu a:hover:after {
    width: 100%;
}

.main-menu .btn-apply {
    background: var(--accent-color);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    margin-left: 20px;
}

.main-menu .btn-apply:hover {
    background: #F57C00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

.main-menu .btn-apply:after {
    display: none;
}

/* Slider/Hero Section */
.hero-section {
    background: linear-gradient(rgba(27, 94, 32, 0.85), rgba(46, 125, 50, 0.9)), url('https://scontent.fkhi16-1.fna.fbcdn.net/v/t39.30808-6/604804740_1251650833686908_7154782956746971690_n.jpg?_nc_cat=103&ccb=1-7&_nc_sid=833d8c&_nc_ohc=f7kyHXH7fkoQ7kNvwFBJgY8&_nc_oc=Adl3GDZIyNfDjq1UWkva_JNN6CeGsuVwqzCtyuCV2-ptU8px9j2zq0_EiPr2rb4Fpfk&_nc_zt=23&_nc_ht=scontent.fkhi16-1.fna&_nc_gid=-V3PVzbdrHAjdbNBXX1upQ&oh=00_AfmasFmjA54gy_ACxk85qeYkY9ElM8CKCJS8DTN9OjgqIQ&oe=695331BF');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content .highlight {
    color: var(--accent-color);
    font-weight: 900;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 152, 0, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    border: 2px solid var(--accent-color);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Buttons */
.btn-primary {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 14px 35px;
    font-size: 18px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-primary i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    background: #F57C00;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 152, 0, 0.3);
    text-decoration: none;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 14px 35px;
    font-size: 18px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: white;
    color: var(--dark-green);
    transform: translateY(-3px);
    text-decoration: none;
}

/* Section Styling */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 60px;
}

.section-title .subtitle {
    color: var(--primary-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.section-title h2 {
    color: var(--dark-green);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title h2 span {
    color: var(--accent-color);
}

.section-title p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
    border-top: 5px solid var(--light-green);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.15);
    border-top-color: var(--accent-color);
}

.feature-card .icon {
    font-size: 50px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.feature-card h4 {
    color: var(--dark-green);
    margin-bottom: 15px;
    font-size: 22px;
}

/* Milestone Banner */
.milestone-banner {
    background: linear-gradient(135deg, #004C99, #009900);
    color: white;
    padding: 30px 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--bg-light);
}

/* Footer */
footer {
    background: var(--dark-green);
    color: white;
    padding-top: 80px;
    margin-top: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-icon {
    font-size: 40px;
    color: var(--light-green);
    margin-right: 15px;
}

.footer-logo-text {
    font-size: 28px;
    font-weight: 700;
}

.footer-logo-text span {
    color: var(--accent-color);
}

.footer-about {
    color: #ccc;
    margin-bottom: 30px;
}

.footer-widget h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    bottom: 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 8px;
    text-decoration: none;
}

.footer-links a i {
    margin-right: 10px;
    font-size: 12px;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--accent-color);
    margin-right: 15px;
    margin-top: 5px;
}

.footer-social a {
    color: white;
    font-size: 18px;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.copyright {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    margin-top: 60px;
    text-align: center;
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .main-menu ul {
        flex-direction: column;
        background: white;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        display: none;
        z-index: 1000;
    }
    
    .main-menu.active ul {
        display: flex;
    }
    
    .main-menu li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }
    
    .main-menu a {
        padding: 15px 20px;
    }
    
    .menu-toggle {
        display: block;
        font-size: 24px;
        color: var(--dark-green);
        cursor: pointer;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}