/* Estilos generales */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.naranja {
    color: #F37718;
}

.azul_oscuro {
    color: #042136;
}

body {
  font-family: 'Didact Gothic', sans-serif;
  line-height: 1.6;
  color: #042136;
}

header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 5px;
  background-color: #042136;
  color: white;
  line-height: 1;
}

.logo-container {
  margin-right: 0px;
  text-align: center;
}

.logo-container p {
  font-size: 18px;
  font-weight: bold;
}

h1 {
  font-size: 24px;
  font-weight: bold;
  margin-left: 20px;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

services {
  background-color: #FFFFFF;
  padding: 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

ul {
  list-style: none;
  margin-bottom: 20px;
}

li {
  margin-bottom: 10px;
}

i {
  font-size: 24px;
  margin-right: 10px;
}

button[type="button"] {
  background-color: #042136;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  font-family: Century Gothic, sans-serif;
  cursor: pointer;
}

footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  text-align: center;
  background-color: #042136;
  color: white;
}

/* Para que el footer se ajuste a la pantalla en dispositivos móviles */
@media (max-width: 768px) {
  footer {
    position: relative;
    padding-bottom: 50px; /* Agregar espacio para el footer en dispositivos móviles */
  }
}

