body{
    font-family: 'Century Gothic','Inter','sans-serif';
    background:#f6f8fb;
}

.hero h1{
    font-weight:700;
}

.hero{
    background:linear-gradient(135deg,#107C41,#0c5f33);
    color:white;
    padding:90px 0;
}

.hero-image{
    max-width:520px;
    filter:drop-shadow(0 15px 25px rgba(0,0,0,0.2));
    animation:float 6s ease-in-out infinite;
}

@keyframes float{
    0%{transform:translateY(0px);}
    50%{transform:translateY(-10px);}
    100%{transform:translateY(0px);}
}

.section-title {
    margin-bottom:50px;
    font-weight:700;
    color:#107C41;
}

.feature-card{
    background:white;
    border-radius:10px;
    padding:30px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    transition:0.3s;
}

.feature-card:hover{
    transform:translateY(-5px);
}

.feature-card img{
    margin-bottom:15px;
    opacity:0.9;
    transition:0.3s;
}

.feature-card:hover img{
    transform:scale(1.1);
}

.video-card{
    font-size: small;
    font-family: 'Century Gothic';
    background:white;
    border-radius:10px;
    padding:20px;
    box-shadow:0 4px 10px rgba(0,0,0,0.05);
}

footer{
    background:#1e1e1e;
    color:#aaa;
    padding:40px 0;
    margin-top:80px;
}

.btn-excel{
    background:#107C41;
    color:white;
    border:none;
}

.btn-excel:hover{
    background:#0c5f33;
}

.icon-circle{
    background:#e8f5ee;
    border-radius:50%;
    padding:18px;
    display:inline-block;
}
