/* General */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #000000;
}

/* Navbar */
.navbar {
    border-bottom: 1px solid #ddd;
}

.navbar-item img {
    max-height: 50px;
}

.navbar-menu .navbar-item {
    font-weight: 700;
}

/* Secciones */
.section {
    padding: 3rem 1.5rem;
}

.section h1,
.section h2 {
    color: #333;
}

.section ul {
    list-style-type: disc;
    margin-left: 2rem;
}

.logo-container {
  display: flex;
  align-items: center;
  height: 70px; /* Ajusta esta altura para que coincida con el ejemplo */
}

.logo-image {
  height: 100%; /* La imagen se ajustará automáticamente a la altura del contenedor */
  max-height: 70px; /* Limita la altura máxima */
  width: auto; /* Mantiene la proporción de la imagen */
}

/* Footer */
.footer {
    background-color: #f5f5f5;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
    border-top: 1px solid #ddd;
}