/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

h1, h2, h3 {
    color: #222;
}

a {
    text-decoration: none;
    color: #007BFF;
}

a:hover {
    text-decoration: underline;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    border-radius: 5px;
    margin: 10px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.hero {
    position: relative;
    text-align: center;
    padding: 50px 20px;
    background-color: #007BFF;
    color: #fff;
}

.hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}

.services, .automotriz, .seguridad, .testimonials, .urgencias, .faq, .contact {
    padding: 40px 20px;
    text-align: center;
}

.service-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.service-item {
    width: 30%;
    margin-bottom: 20px;
}

.service-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.testimonial-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.testimonial-list blockquote {
    width: 30%;
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
}

.faq-item {
    margin-bottom: 20px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

footer nav a {
    color: #fff;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .service-item, .testimonial-list blockquote {
        width: 100%;
    }
}