body {
    font-family: 'Arial', sans-serif;
}

.hero {
    background: url('/static/images/hero-bg.jpg') no-repeat center center/cover;
}

.btn-custom {
    background-color: #007BFF; /* Replace with your desired button color */
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    font-weight: bold;
}

.btn-custom:hover {
    background-color: #0056b3;
    color: #fff;
}

.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.footer {
    font-size: 0.9rem;
}