body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #e6f0f7; /* Fondo actualizado */
}
header {
    background: #0056b3;
    color: white;
    padding: 1rem 0;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}
header .logo {
    height: 50px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav ul li a {
    color: white;
    text-decoration: none;
}
#hero {
    position: relative;
    text-align: center;
}
#hero .banner {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 2px 2px 5px #000;
}
.hero-text h1 {
    font-size: 2.5rem;
}
.hero-text .btn {
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    color: white;
    background: #ff4040;
    text-decoration: none;
    border-radius: 5px;
}
.container {
    max-width: 1100px;
    margin: auto;
    padding: 2rem;
}
.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.service {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 1rem 0;
}
