.layout {
  padding: 30px 6%;
  overflow: hidden;
  margin: 20px 0;
}

a {
  text-decoration: none;
  color: #12A19A;
}

.main h1 {
  text-align: center;
  color: #12A19A;
}

.accordion {
  background-color: #12A19Abb;
  color: #111;
  border-radius: 3px;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: start;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.accordion:not(:last-child) {
  border-bottom: 3px solid #fff;
}

.active, .accordion:hover {
  background-color: #12A19A;
  color: #fff;
}

.accordion:hover .accordion:after {
  color: #fff;
}

.accordion:after {
  content: '\002B';
  color: #fff;
  font-weight: bold;
  float: left;
  margin-right: 5px;
}

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

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s ease-out;
}

.conditions {
  margin-bottom: 40px;
  padding: 20px 5.8%;
  background: #fff;
  color: #222;
  border-radius: 17px
}

.conditions h2 {
  padding-top: 15px;
}

@media(max-width:800px) {
  .layout {
    padding: 0;
  }
  .main h1{font-size: 26px;}
  .conditions h2{font-size: 18px;}
}