:root {
    --primary: #00b140;
    /* The green from the screenshot */
    --primary-hover: #009933;
    --secondary: #e9ecef;
    --accent: #d32f2f;
    /* Red for urgent items */
    --dark-bg: #ffffff;
    /* Switched to white */
    --card-bg: #ffffff;
    --text-main: #333333;
    --text-muted: #666666;
    --light-gray: #f8f9fa;
    --border-color: #e5e5e5;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    background-color: #f4f5f9;
    /* Light background */
    overflow-x: hidden;
}

/* Bootstrap Overrides for Brand Colors */
.text-primary {
    color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-primary:hover {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
}

.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary) !important;
    color: white !important;
    border-color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

/* Navbar overrides for light theme */
.navbar-custom {
    background-color: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    color: #333 !important;
}

.nav-link {
    color: #555 !important;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: url('/assets/img/hero_bg_light.jpg');
    /* We might need a new light hero image or just a gradient */
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    padding: 80px 0;
}

.hero-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 177, 64, 0.2);
}

.btn-outline-custom {
    background-color: transparent;
    color: #333;
    border: 2px solid #ddd;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-custom:hover {
    border-color: #333;
    background-color: #333;
    color: white;
}

/* Stats */
.stats-section {
    background: #fff;
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.stat-item h3 {
    color: var(--primary);
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-muted);
    font-weight: 500;
}

/* Steps */
.step-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid transparent;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--border-color);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #e8f5e9;
    /* Light green */
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

/* Features */
.feature-icon-big {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Footer */
.modern-footer {
    background: #fff;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
    color: #555;
}

.footer-logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    display: block;
}