.title__container {
  display: flex;
	align-items: start;
	flex-direction: column;
  color: #1b2634;
  text-transform: uppercase;
  margin: 0 10%;
}

.title {
  margin: 0;
  font-size: 46px;
  line-height: 18px;
  font-weight: 400;
  border-bottom: 12px solid #CBD42F;
}

.subtitle {
  margin: 5px 0;
  font-size: 58px;
  line-height: 70px;
}

.cards__container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 80px;
}

.card {
  width: 260px;
  height: 700px;
  background-color: #eff5fe;
  padding: 50px 24px 0px 24px;
  border-radius: 30px;
  color: #1b2634;
  margin: 40px 40px 0px 40px;
}

.card__image {
  height: 55px;
  width: auto;
}

.card__title {
  font-size: 20px;
  margin-bottom: 12px;
}

.card__text {
  font-size: 16px;
  line-height: 28px;
  margin: 0 0 35px;
}

.paragraph {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 48px 10%;
}

.paragraph__text {
  font-size: 18px;
  line-height: 30px;
  margin: 0 0 35px;
}

.paragraph__text a {
  color: #CBD42F;
  text-decoration: underline;
}

.info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #1b2634;
  margin: 0 10%;
  border-radius: 50px;
}

.info__image {
  height: 128px;
  width: auto;
  padding: 0 0 42px 0;
}

.info__text {
  text-align: center;
  padding: 42px 62px 10px 62px ;
  font-size: 22px;
  line-height: 34px;
  color: #FFFFFF;
}

@media (max-width: 992px) {
  .title__container {
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #1b2634;
    text-transform: uppercase;
    margin: 0 10%;
  }
  
  .title {
    font-size: 26px;
    line-height: 8px;
    margin-top: 3px;
    border-bottom: 9px solid #CBD42F;
  }
  
  .subtitle {
    margin: 5px 0;
    font-size: 38px;
    margin-top: -4px;
  }

  .cards__container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
  }

  .info__text {
    text-align: left;
    padding: 42px 62px 10px 62px ;
    font-size: 18px;
    line-height: 34px;
    color: #FFFFFF;
  }
}

@media (max-width: 577px) {
  .info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #1b2634;
    border-radius: 50px 50px 0 0;
    margin: 0;
  }
}

.accordion {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 2rem 110px;
  border-radius: 8px;
  font-family: Arial, sans-serif;
}

.accordion__item {
  border-top: 2px solid #DFE5EE;
}

.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: auto;
  padding: 1rem;
  text-align: left;
  font-size: 1.1rem;
  background-color: #ffffff;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.accordion__header:hover {
  background-color: #e0e0e0;
}

.header__title {
  font-size: 26px;
  text-transform: uppercase;
  color: #1A2634;
  font-weight: 400;
}

#header__icon {
  color: #1A2634;
  font-size: 30px;
  transition: transform 0.3s ease;
  font-variation-settings: 
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
  ;
}

.accordion__item.active #header__icon {
  transform: rotate(225deg);
}

.accordion__content {
  font-size: 18px;
  line-height: 28px;
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  background-color: #fff;
  color: #1A2634;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion__item.active .accordion__content {
  padding: 1rem;
  max-height: 700px;
}

@media (max-width: 576px) {
  .header__title {
    font-size: 20px;
    text-transform: uppercase;
    color: #1A2634;
    font-weight: 400;
  }
  .accordion {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 2rem 30px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
  }
  .accordion__content {
    font-size: 14px;
    line-height: 20px;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    background-color: #fff;
    color: #1A2634;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }
}