body {
    background-color: #1a0000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* Red gradients and accents */
.bg-red-gradient {
    background: linear-gradient(135deg, #7a0000, #b30000);
}

.text-highlight {
    color: #ff4040;
}

.btn-gradient {
    background: linear-gradient(90deg, #b30000, #ff1a1a);
    color: white;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

    .btn-gradient:hover {
        background: linear-gradient(90deg, #ff1a1a, #ff4d4d);
        box-shadow: 0 0 20px rgba(255, 50, 50, 0.8);
    }

.hero {
    background: radial-gradient(circle at right, #400000, #1a0000);
    color: #fff;
}

    .hero img {
        border-radius: 1rem;
        transition: transform 0.3s ease;
    }

        .hero img:hover {
            transform: scale(1.05);
        }

.card.car-card {
    background-color: #2b0000;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

    .card.car-card:hover {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    }

/* Contact section */
.contact-section {
    background: linear-gradient(135deg, #4d0000, #800000);
    border-top: 3px solid #b30000;
}

    .contact-section h2 {
        color: #ffcccc;
    }

.map-container iframe {
    border-radius: 10px;
}

.footer {
    border-top: 3px solid #b30000;
}
