/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; 
    color: #333;
}

h1 {
    color: #2c3e50; /* Azul oscuro */
}

p {
    color: #555; /* Gris oscuro */
}

.container {
    width: 80%;
    margin: auto;
    text-align: center;
}

/* Encabezado */
header {
    background: #333;
    color: white;
    padding: 20px 0;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

/* Sección Hero */
.hero {
    background: #007bff;
    color: white;
    padding: 50px 0;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
}

.button:hover {
    background: #218838;
}

/* Sección Servicios */
.services {
    background: white;
    padding: 50px 0;
}

.service-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service {
    width: 30%;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
}

/* Sección Contacto */
.contact {
    background: #343a40;
    color: white;
    padding: 50px 0;
}

/* Pie de página */
footer {
    background: #333;
    color: white;
    padding: 10px 0;
}
