
.drivers-hero {
    background: linear-gradient(rgba(10, 25, 47, 0.75), rgba(10, 25, 47, 0.75)), 
                url('https://images.unsplash.com/photo-1591768793355-74d04bb66ea4?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
}

.benefit-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    transition: 0.4s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
    border-color: var(--accent-red);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    transition: 0.3s;
}

.benefit-card:hover .benefit-icon {
    background: var(--accent-red);
    transform: rotateY(360deg);
}

.benefit-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}


.req-check {
    width: 35px;
    height: 35px;
    background: var(--accent-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


.form-control, .form-select {
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
}

.form-control:focus {
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(217, 37, 37, 0.2);
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .drivers-hero h1 { font-size: 3rem; }
    .drivers-hero { min-height: 60vh; }
    .section-spacing { padding: 60px 0; }
}