

.page-title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 32px;
  margin-bottom: 18px;
  color: #4b6997;
  text-align: center;
}

.accordion {
  width: 100%;
 
  margin: 0 auto;
}
.accordion__head {
  cursor: pointer;
  color: #4c1f00;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #df7d3b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fcf8ef;
}
.accordion__head::after {
    content: url('../img/arrow.svg');
   display: block;
  width: 16px;
  height: 16px;
  transition: transform 300ms ease-in-out;
}
.opened .accordion__head::after {
  transform: rotate(180deg);
}
.accordion__body {
  padding-top: 12px;
  color: #bbb;
  font-size: 16px;
  line-height: 20px;
}

.dropdown {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.dropdown__head {
  cursor: pointer;
  color: #e59966;
  padding: 12px 0;
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dropdown__head::after {
  content: url('assets/img/arrow.svg');
   display: block;
  width: 16px;
  height: 16px;
  transition: transform 300ms ease-in-out;
}
.opened .dropdown__head::after {
  transform: rotate(180deg);
}
.dropdown__body {
  padding: 25px;
  background-color: #e59966;
  font-size: 18px;
  transition: transform 300ms ease-in-out;
  transform: translateY(25px);
  max-width: 450px;
}
.opened .dropdown__body {
  transform: translateY(0);
}
