:root {
    --primary-color: #1a4d2e;
    --secondary-color: #2d5f3f;
    --accent-color: #FFC107;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: white !important;
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-color) !important;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: rgb(216, 226, 217);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".1" fill="%23ffffff"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.btn-primary-custom {
    background-color: var(--accent-color);
    border: none;
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    color: white;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background-color: #FFC107;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(194, 156, 93, 0.4);
}

.feature-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.section-title {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.benefits-section {
    background-color: var(--light-bg);
}

.check-icon {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-right: 10px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
}


footer {
    background-color: #0D6EFD;
    color: white;
    padding: 30px 0;
}


footer a {
    transition: color 0.3s;
}

footer a:hover {
    color: var(--accent-color) !important;
}

.feature-list-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.feature-list-item:last-child {
    border-bottom: none;
}

.card.shadow {
    box-shadow: 0 5px 20px rgba(179, 176, 176, 0.1) !important;
}