:root {
    --text-accent: black;
}

.navbar {
    background: linear-gradient(90deg, #005736 0, #04b356 63%);
}

.navbar-brand,
.nav-link {
    color: white !important;
    font-weight: 500;
}

.hero-section {
    background: linear-gradient(rgba(0, 87, 54, 0.48), rgba(4, 179, 86, 0)), url('/static/assets/bg.webp') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.section-title {
    color: #005736;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #04b356;
}

.feature-box {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px 15px;
    margin-bottom: 20px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 2.5rem;
    color: #04b356;
    margin-bottom: 15px;
}

.btn-success {
    background-color: #04b356;
    border-color: #04b356;
}

.btn-success:hover {
    background-color: #005736;
    border-color: #005736;
}

footer {
    background: #005736;
    color: white;
    padding: 40px 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-links a:hover {
    color: white;
}

.section-content {
    margin-bottom: 30px;
    line-height: 1.6;
}