body {
  width: 100%;
  font-family: "Poppins", sans-serif;

  background: -webkit-linear-gradient(
    -45deg,
    #1e5799 0%,
    #eeeeff 0%,
    #eeeeff 12%,
    #ffffff 71%
  );
  background: linear-gradient(
    135deg,
    #1e5799 0%,
    #eeeeff 0%,
    #eeeeff 12%,
    #ffffff 71%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#ffffff',GradientType=1 );
}
.container {
  margin: auto;
}
div {
  max-width: 1000px;
  padding: 20px;
}

h1 {
  font-size: 3.5em;
  font-weight: 500;
  color: #0e0862;
}

h2 {
  margin-top: 60px;
  font-weight: 600;
  color: #0e0862;
}

p {
  font-size: 1em;
  color: #52565e;
  font-weight: 400;
}

a {
  color: red;
  font-weight: bold;
  color: #352e94;
  font-weight: 600;
}

ul {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 12px;
}

li {
  color: #52565e;
  margin-bottom: 7px;
}

/* ACCORDION */
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}
.active, .accordion:hover {
  background-color: #ccc;
}

.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
}
.accordion:after {
  content: '\02795'; 
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; 
}
