.warranty-hero {
    background: linear-gradient(rgba(26, 30, 47, 0.85), rgba(26, 30, 47, 0.85)), 
                url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    border-bottom: 8px solid var(--racing-red);
}

.warranty-card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    padding: 30px;
    height: 100%;
    transition: transform 0.3s;
    border-top: 4px solid var(--racing-red);
    background: white;
}

.warranty-card:hover {
    transform: translateY(-10px);
}

.warranty-icon {
    font-size: 2.5rem;
    color: var(--racing-red);
    margin-bottom: 15px;
}

.coverage-badge {
    display: inline-block;
    background-color: var(--gasoline-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-family: var(--font-subheading);
    margin: 10px 5px;
}

.exclusion-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.exclusion-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 15px;
    height: 15px;
    background-color: var(--racing-red);
    border-radius: 3px;
}

.process-step {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}

.process-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--racing-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-subheading);
    font-size: 1.2rem;
}

.extended-feature {
    display: flex;
    margin-bottom: 20px;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--racing-red);
    margin-right: 15px;
    flex-shrink: 0;
}

.note-card {
    background-color: rgba(0, 95, 140, 0.05);
    border-left: 4px solid var(--racing-red);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 0 8px 8px 0;
}