.shipping-hero {
    background: linear-gradient(rgba(26, 30, 47, 0.85), rgba(26, 30, 47, 0.85)), 
                url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?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);
}

.policy-card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    padding: 30px;
    height: 100%;
    border-top: 4px solid var(--racing-red);
    background: white;
    margin-bottom: 30px;
}

.policy-icon {
    font-size: 2.5rem;
    color: var(--racing-red);
    margin-bottom: 15px;
}

.policy-list {
    list-style: none;
    padding: 0;
}

.policy-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.policy-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 18px;
    height: 18px;
    background-color: var(--racing-red);
    border-radius: 3px;
}

.non-returnable-item {
    display: flex;
    margin-bottom: 15px;
}

.non-returnable-icon {
    color: var(--racing-red);
    font-size: 1.2rem;
    margin-right: 10px;
    margin-top: 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;
}

.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;
}

.shipping-badge {
    display: inline-block;
    background-color: var(--gasoline-blue);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-family: var(--font-subheading);
    margin: 5px;
    font-size: 0.9rem;
}