/* Color variables */
:root {
    --primary-blue: #007dc4;
    --accent-orange: #f3951f;
    --accent-green: #4cb748;
    --accent-yellow: #ece83f;
}

/* Hero banners */
.hero-banner, .about-banner {
    background-color: var(--primary-blue);
    color: white;
}

/* Button styles */
.btn-primary-custom {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    color: white;
}

    .btn-primary-custom:hover {
        background-color: #d97e1a; /* darkened */
        border-color: #d97e1a;
        color: white;
    }

/* Card borders */
.card {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

    .card:hover {
        transform: translateY(-5px);
    }

/* Stat numbers */
.card-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Step circles */
.step-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}
