@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
body {
    font-family: 'Poppins', sans-serif;
}

.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/placeholder.svg?height=800&width=1600&query=eucalyptus forest plantation aerial view');
    background-size: cover;
    background-position: center;
    height: 85vh;
}

.product-icon {
    background-color: #006633;
    color: white;
    width: 90px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px 1px;
    margin: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.product-icon:hover {
    background-color: #004d26;
    transform: translateY(-5px);
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #006633;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stats-item {
    position: relative;
    z-index: 1;
}

.stats-item::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 50px;
    height: 50px;
    background-color: #e6f2e6;
    border-radius: 10px;
    z-index: -1;
}