.text-center {
  text-align: center;
}

.article {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-section {
  max-width: 80%;
}

.logo-section img {
  max-width: 200px;
  height: auto;
}



.inner-ul {
  margin-bottom: 0;
  list-style-type: disc;
  /* Use disc bullets for inner lists */
  margin-left: 20px;
  /* Indent nested lists */
}

.inner-ul li {
  margin: 5px 0;
  /* Add space between inner list items */
}

.outer-ul {
  margin: 0;
  padding: 0;
}

.outer-ul>li {
  margin: 15px 0;
  /* Add space between top-level list items */
}

.h2-title {
  font-size: 1.5em !important;
}

.h3-title {
  font-size: 1.17em !important;
}

.h4-title {
  font-size: 1em !important;
}

.pictures {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  gap: 5px;
}

.pictures img {
  max-height: 200px;
  width: auto;
  border-radius: 5px;
}

.second-navbar {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 10px 0px;
  color: white;
}


.menu-button {
  background-color: transparent;
  border: none;
  color: #2f373f;
  cursor: pointer;
  /* margin: 0 5px; */
  transition: background-color 0.3s;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  text-align: center;
  /* Ensure text is centered */
  display: inline-block;
  /* Allows control over button's width */
  padding: 7px 20px;
  /* Adjusted padding */
}

.menu-button:hover {
  background-color: #2f373f;
  border: none;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
}

.menu-button.active {
  background-color: #2f373f;
  color: white;
}

@media screen and (max-width: 768px) {
  .article {
    flex-direction: column;
    text-align: center;
  }

  .text-section {
    max-width: 100%;
  }


  .pictures {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    gap: 5px;
  }

  .pictures img {
    max-height: 275px;
    width: auto;
  }
}