body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    padding: 20px;
    background-image: url('images/header_background.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3); /* Overlay más claro */
    z-index: 0;
}

header img {
    max-width: 150px;
}

h1 {
    font-size: 2.5em;
    margin: 10px 0;
    position: relative;
    z-index: 1;
}

section {
    padding: 20px;
    margin: 20px 0;
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.servicios-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.servicio {
    flex: 1;
    margin: 10px;
    text-align: center;
    min-width: 200px;
    max-width: 23%;
}

.servicio img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Estilos para las secciones de dos columnas */
.dos-columnas {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.columna {
    flex: 1;
    margin: 10px;
    text-align: center;
    min-width: 45%; /* Asegura que las columnas no sean demasiado pequeñas */
}

.columna img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #f4f4f4;
    margin-top: 20px;
}