body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #333;
    margin: 0;
    padding: 0;
}
header {
    background-color: #333;
    color: white;
    padding: 20px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
header img {
    max-width: 150px;
    margin-right: 20px;
}
.header-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.header-text h1 {
    font-size: 2em;
    margin: 0;
    font-weight: 600;
}
.header-text p {
    font-size: 1em;
    margin: 5px 0 0 0;
    font-weight: 300;
}
.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
}
nav {
    background-color: #fff;
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}
nav a {
    color: #333;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    font-size: 1.2em;
}
nav a:hover {
    color: #1abc9c;
}
section {
    padding-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
}
section h2 {
    font-size: 3em;
    color: #333;
    margin-bottom: 40px;
}
section p {
    font-size: 1.2em;
    color: #666;
    max-width: 900px;
    margin: 0 auto 40px;
}

section ul {
    list-style: none;
}

.module {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: left;
}

.services {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.service {
    background-color: #f9f9f9;
    padding: 30px;
    margin: 15px;
    border-radius: 8px;
    width: 30%;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.service:hover {
    transform: translateY(-5px);
}
.service img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}
.service h3 {
    color: #1abc9c;
    font-size: 1.5em;
}
.service p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.8;
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
}
footer ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
footer ul li {
    margin-bottom: 10px;
    font-size: 1.2em;
}
footer p {
    font-size: 1em;
    margin: 0;
}

footer ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.0em;
}

footer ul li a:hover {
    color: #1abc9c;
    text-decoration: underline;
}

#contact form {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: left;
}
#contact form div {
    margin-bottom: 15px;
}
#contact form label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}
#contact form input,
#contact form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}
#contact form button {
    background-color: #1abc9c;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
}
#contact form button:hover {
    background-color: #16a085;
}

.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    font-size: 1.2em;
    color: #333;
    cursor: pointer;
}

.language-option {
    color: #fff;
    margin: 0px;
    padding: 0px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.language-option:hover {
    background-color: #1abc9c;
}


.file-upload {
    position: relative; /* Posiciona el contenedor */
}

.file-upload input[type="file"] {
    display: none; /* Oculta el botón de carga predeterminado */
}

.file-upload-text {
    display: inline-block; /* Muestra el texto del archivo */
    width: 100%; /* Ocupa todo el ancho del contenedor */
    padding: 12px; /* Espaciado interno */
    border: 1px solid #ccc; /* Borde gris claro */
    border-radius: 5px; /* Bordes redondeados */
    background-color: white; /* Fondo blanco */
    color: #333; /* Color del texto */
    font-size: 1em; /* Tamaño de la fuente */
    text-align: center; /* Centrar el texto */
    cursor: pointer; /* Cambiar cursor al pasar el ratón */
    box-sizing: border-box; /* Incluye el padding y el borde en el ancho total */
    transition: background-color 0.3s ease, border-color 0.3s ease; /* Transición suave */
}

/* Al pasar el ratón sobre el texto del campo de archivo */
.file-upload-text:hover {
    background-color: #f0f0f0; /* Fondo gris claro al pasar el ratón */
    border-color: #1abc9c; /* Cambia el color del borde al pasar el ratón */
}

/* Estilos responsivos para pantallas pequeñas */
@media (max-width: 768px) {
    .file-upload-text {
        font-size: 0.9em; /* Tamaño de fuente ligeramente más pequeño en pantallas pequeñas */
        padding: 10px; /* Menos espaciado interno */
    }
}

@media (max-width: 480px) {
    .file-upload-text {
        font-size: 0.8em; /* Tamaño de fuente aún más pequeño en pantallas muy pequeñas */
        padding: 8px; /* Menos espaciado interno */
    }
}

#work-with-us form {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: left;
}

#work-with-us form div {
    margin-bottom: 15px;
}

#work-with-us form label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

#work-with-us form input,
#work-with-us form textarea,
#work-with-us form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

#work-with-us form input[type="file"] {
    padding: 8px;
}

#work-with-us form button {
    background-color: #1abc9c;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
}

#work-with-us form button:hover {
    background-color: #16a085;
}

@media (max-width: 768px) {
    #work-with-us form {
        width: 100%;
    }

    #work-with-us form label {
        font-size: 1em;
    }

    #work-with-us form input,
    #work-with-us form textarea,
    #work-with-us form select,
    #work-with-us form button {
        font-size: 0.9em;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    #work-with-us form label {
        font-size: 0.9em;
    }

    #work-with-us form input,
    #work-with-us form textarea,
    #work-with-us form select,
    #work-with-us form button {
        font-size: 0.85em;
        padding: 8px;
    }
}

@media screen and (max-width: 768px) {
    .language-selector {
        font-size: 1em;
        top: 10px;
        right: 10px;
    }

    .language-option {
        padding: 1px 2px;
    }
}        

@media screen and (max-width: 1024px) {
    #contact form {
        width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    header img {
        margin-bottom: 20px;
    }
    .header-text h1 {
        font-size: 1.8em;
    }
    .header-text p {
        font-size: 1em;
    }
    .service {
        width: 45%;
    }
}

@media screen and (max-width: 768px) {
    header h1 {
        font-size: 1.5em;
    }
    header p {
        font-size: 0.9em;
    }
    nav a {
        font-size: 1em;
        margin: 0 10px;
    }
    .service {
        width: 100%;
        margin: 10px 0;
    }
}

@media screen and (max-width: 480px) {
    header h1 {
        font-size: 1.3em;
    }
    header p {
        font-size: 0.8em;
    }
    nav a {
        font-size: 0.9em;
        margin: 0 5px;
    }
    section h2 {
        font-size: 2em;
    }
    section p {
        font-size: 1em;
    }
    .service {
        width: 100%;
        padding: 20px;
        margin: 10px 0;
    }
}