/* Reset de estilos básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #EFEDED; /* Fondo gris claro */
    color: #333;
    line-height: 1.6;
}

/* Estilos del encabezado */
header {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    border-bottom: 2px solid #ddd;
}

header .logo {
    margin-bottom: 20px;
}

/* Estilo para los logos (tanto el de Autofull como el otro) */
header .logo-img {
    max-width: 100%;      /* Hace que la imagen sea responsive */
    height: auto;         /* Mantiene la proporción original */
    width: 350px;         /* Tamaño inicial del logo */
    margin-bottom: 10px;  /* Espaciado entre el logo y los demás elementos */
}

/* Estilos para el título y párrafo del encabezado */
header h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

header p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

/* Estilo del enlace de WhatsApp */
.whatsapp {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 30px;
    transition: background-color 0.3s ease;
}

.whatsapp:hover {
    background-color: #128c7e;
}

/* Estilos del footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer p {
    margin-bottom: 15px;
    font-size: 16px;
}

footer a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-size: 24px;
}

footer a:hover {
    col
