body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

main {
    padding: 20px;
}

.services, .projects, .testimonials {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.service, .project, .testimonial {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    width: 30%;
    text-align: center;
}

.service img {
    width: 100%;
    height: auto; /* Mantiene las proporciones de la imagen */
    max-height: 200px; /* Ajusta la altura máxima */
    object-fit: cover; /* Ajusta la imagen para que se vea bien dentro del espacio disponible */
    border-radius: 10px; /* Opcional: bordes redondeados */
}

blockquote {
    font-style: italic;
    margin: 10px 0;
}

form {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin: 0 auto;
}

form input, form textarea {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.social-contact a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.social-contact h3 {
    margin-bottom: 10px;
}

.whatsapp {
    background-color: #25D366;
}

.facebook {
    background-color: #4267B2;
}

footer {
    text-align: center;
    padding: 4px;
    background-color: #333;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}
