* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  place-items: center;
  text-align: center;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 10rem;
  background: linear-gradient(to right, #27b0dd, #1588ce, #003399);
  background-color: #0241be;
}

nav li {
  list-style-type: none;
}

.wrapper {
  max-width: 75%;
  margin: auto;
}

.wrapper > p,
.wrapper > h1 {
  margin: 5rem;
  text-align: center;
}

.accordion {
  background-color: white;
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  font-size: 1.2rem;
  width: 100%;
  padding: 2rem 2.5rem;
  border: none;
  outline: none;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.accordion i {
  font-size: 1.5rem;
  transition-duration: 0.3s;
}

.active,
.accordion:hover {
  background-color: #003399;
  color: white;
  transition-duration: 0.1s;
}

.accordion.active i {
  transform: rotate(180deg);
  transition-duration: 0.1s;
}

.category {
  margin-top: 1rem;
}

.category:last-child {
  margin-bottom: 2.5rem;
}

.pannel {
  padding: 30px;
  overflow: hidden;
  display: none;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition-duration: 0.1s;
}

.pannel p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.2rem;
  line-height: 1.4;
  text-align: justify;
}

.faq {
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin: 10px 0;
}

.faq.active {
  border: none;
}

.pannel ul {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 30px;
}

.pannel li {
  list-style-type: disc;
  padding: 10px;
}

.category-title {
  font-size: 1.5em;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.answer {
  color: black;
  margin: 10px;
}

.dropbtn {
  background-color: white;
  color: #003399;
  padding: 16px;
  font-size: 16px;
  border: none;
  transition-duration: 0.2s;
}

.dropbtn:hover {
  transition-duration: 0.2s;
  color: white;
  background-color: #003399;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content button {
  color: black;
  padding: 12px 12px;
  text-decoration: none;
  display: block;
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  cursor: pointer;
}

.dropdown-content button:hover {
  background-color: #ddd;
  transition-duration: 0.2s;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #003399;
  color: white;
  transition-duration: 0.2s;
}

footer {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(20,20,20,0.9);
  color: #ffffff;
  font-size: 1rem;
  padding: 20px 0;
  width: 100%;
  text-align: center;
}

footer div {
  max-width: 100%;
  padding: 0 15px;
}

footer p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

footer div div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: .8rem;
}

footer a {
  color: #ffffff;
  text-decoration: none;
  margin: 5px;
}

