.hero-section {
    /* Use brand colors if available, fallback to existing neutral palette */
    background: linear-gradient(135deg,
        var(--bs-secondary, #2a2d3e) 0%,
        var(--bs-primary, #454c5f) 100%);
    color: #fff;
    padding: 4rem 0;
    margin-bottom: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border: none !important;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-section .container {
    padding-left: 3rem;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.2rem;
    opacity: 0.9;
}

.hero-section .btn-light {
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.12);
    transition: all 0.2s ease;
}

.hero-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.feature-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: transform 0.2s ease-in-out;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2rem;
    color: var(--bs-primary, #0d6efd);
    margin-bottom: 1rem;
}

.stats-section {
    background-color: #f8f9fa;
    padding: 3rem 0;
    margin: 2rem 0;
    border-radius: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--bs-primary, #0d6efd);
}

.stat-label {
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}
