body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background: url('../images/header-bg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header h1, header h2 {
    margin: 0;
    color: #fff;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #333;
    overflow: hidden;
}

nav ul li {
    display: inline-block;
}

nav ul li.left {
    float: left;
}

nav ul li.right {
    float: right;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    display: block;
}

nav ul li a:hover {
    background-color: #555;
}

main {
    background: url('../images/main-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    padding: 20px;
    position: relative;
    z-index: 1;
    color: #fff; /* Cambia el color del texto a blanco */
}

main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0 ); /* Color gris translúcido */
    z-index: -1;
    color: #fff; /* Cambia el color del texto a blanco */
}

section {
    background: rgba(0, 0, 0, 0.8); /* Color gris translúcido más oscuro para el contenido */
    padding: 20px;
    border-radius: 10px;
    color: #fff; /* Cambia el color del texto a blanco */
    text-align: center;
}

.images img {
    width: 25%;
    height: 100px
    margin: 10px;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #444;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.external-link {
    color: #fff; /* Color blanco para el texto del enlace */
    text-decoration: underline;
}

.external-link:hover {
    color: #ddd; /* Color ligeramente más claro al pasar el mouse */
    text-decoration: none;
}


<!-- Agregado -->
.service {
    display: flex;
    align-items: center; /* Alinea verticalmente los elementos */
    margin-bottom: 20px;
    flex-direction: row
}

.service-img {
    margin-right: 10px; /* Espacio entre la imagen y el texto */
    width: 150px; /* Ajusta el tamaño según sea necesario */
    height: auto; /* Mantiene la proporción de la imagen */
}

.service p {
    margin: 0; /* Opcional, para ajustar el espaciado del párrafo */
    flex: 1;
}

