* {
  font-family: "Lato", sans-serif;
  box-sizing: border-box;
}

.accordion {
  width: 80%;
  max-width: 400px;
}

.accordion-item {
  border: 1px solid rgba(0, 49, 82, 0.1);
  border-radius: 5px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  padding: 3px 16px;
  cursor: pointer;
  color: #003152;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #fff;
}

.accordion-header:hover {
  background: #003152;
  color: #fff;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background: #fff;
}

.accordion-item.active .accordion-content {
  max-height: 800px;
}

.card {
  transition: 0.3s;
}

.card img {
  width: 100%;
  display: block;
}

.card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.container {
  display: flex;
  flex-direction: column;
  /* padding: 15px; */
  text-align: center;
  text-decoration: none;
}
.container a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  background-color: #003152;
  transition: all 0.5s;
  border: solid 1px #ffffff;
  border-radius: 5px;
}
.container a:hover {
  color: #003152;
  text-decoration: none;
  font-size: 18px;
  background-color: #ffffff;
  border: solid 1px #003152;
  border-radius: 5px;
}
