.footer-links {
    line-height: 1.8rem;
    font-size: 0.9rem;
}


a {
    color: inherit;
    text-decoration: none;
}
/* ================================
   GLOBAL STYLING
================================ */
body {
    font-family: "Inter", "Segoe UI", Roboto, sans-serif;
    background: #f8f9fa;
    line-height: 1.6;
    color: #1a1a1a;
}

/* Section spacing */
section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Headings */


/* Card shadow modernization */
.shadow-sm {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08) !important;
}

/* ================================
   HERO SECTION
================================ */
.hero {
    background: linear-gradient(135deg, #0a7a26 0%, #0c8f32 100%),
                url('your-background-image.jpg') center/cover no-repeat;
    padding: 120px 0;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color:white;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* CTA Button */
.btn-success {
    background: #10b65a !important;
    border: none;
    transition: 0.3s ease;
}

.btn-success:hover {
    background: #0d9c4d !important;
    transform: translateY(-2px);
}

/* ================================
   FEATURE ICON BOXES
================================ */
.icon {
    font-size: 40px;
    color: #10b65a;
    padding: 10px;
}

.bg-white.rounded {
    transition: 0.25s ease;
    border-radius: 14px !important;
}

.bg-white.rounded:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}

/* ================================
   4-STEP PROCESS
================================ */
#steps .icon {
    font-size: 45px;
    color: #10b65a;
    margin-bottom: 15px;
}

#steps h5 {
    font-weight: 700;
}

/* ================================
   KEY BENEFITS IMAGE GRID
================================ */
.ratio-1x1 {
    border-radius: 20px !important;
}

.ratio-1x1:hover {
    transform: scale(1.04);
    transition: 0.3s ease;
}

.text-muted-light {
    color: #6c757d;
}

/* ================================
   ABOUT SECTION
================================ */
.bg-light-yellow {
    background: #90ee902e;
}

#about .lead {
    max-width: 900px;
    margin: auto;
    color: #4e4e4e;
}

/* ================================
   ANIMATIONS
================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add hover to general links */
a {
    text-decoration: none;
}

/* ================================
   RESPONSIVE TWEAKS
================================ */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.3rem;
    }

    .hero {
        padding: 80px 0;
    }
}
