 
 .breadcrumb-hero {
    background-color: var(--primary-dark-green);
    padding: 120px 0 70px;
     position: relative;
    overflow: hidden;
}

.breadcrumb-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?w=900&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

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

/* Section Styling */
.section-label {
    display: inline-block;
    color: var(--accent-green);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.feature-list-icon {
    width: 40px;
    height: 40px;
    background-color: var(--light-green);
    color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Stats Section */
.stat-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark-green);
    margin-bottom: 0.5rem;
}

/* Trust Cards */
.trust-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid #edf2f7;
    transition: all 0.3s ease;
    height: 100%;
}

.trust-card:hover {
    border-color: var(--accent-green);
    box-shadow: 0 20px 40px rgba(109, 189, 91, 0.12);
    transform: translateY(-10px);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-green);
    color: var(--accent-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Process Steps */
.step-item {
    position: relative;
    padding-left: 3rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-dark-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 1;
}

.step-item::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    width: 2px;
    height: calc(100% - 20px);
    background-color: #edf2f7;
    z-index: 0;
}

.step-item:last-child::after {
    display: none;
}

/* Course Chips */
.course-chip {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--light-gray);
    border: 1px solid #edf2f7;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0.5rem;
    transition: all 0.3s ease;
}

.course-chip:hover {
    background-color: var(--accent-green);
    color: white;
    border-color: var(--accent-green);
}

/* Buttons (Synced with index.css) */
.btn-primary-custom {
    background-color: var(--accent-green);
    color: white;
    border: none;
    transition: all 0.3s ease;
    border-radius: 4px !important;
}

.btn-primary-custom:hover {
    background-color: var(--accent-green-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(104, 184, 87, 0.3);
}
