.investment-outcomes {
  margin-top: 100px !important;
}

.investment-outcomes-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
  text-align: center;
  border-radius: 30px;
  background: #2e4e35;
  padding: 80px 40px;
}

.investment-outcomes-header {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}
.investment-title {
  font-weight: 700;
  font-size: 48px;
  font-style: italic;
  line-height: 47px;

  color: #ffffff;
}

.investment-subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;

  text-align: center;
  max-width: 723px;
  color: #ffffff;
}

.accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion-content {
  width: 100%;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.investment-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.accordion-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
  gap: 40px;

  background: #ffffff;
  border-radius: 30px;
}

.accordion-toggle {
  position: relative;
  width: 100%;
}
.accordion-toggle .accordion-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  text-align: left;
  color: #2e4e35;
  margin-bottom: 16px;
}

.accordion-toggle .accordion-subtitle {
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 0;
  color: #2e4e35;
  text-align: left;
  max-width: 90%;
}

.accordion-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  font-size: 24px;
}
.investment-item {
  width: 100%;
  height: 96px;

  border: 1px solid #f1b314;
  border-radius: 30px;
  transition: all 300ms ease;
}

.investment-item > a {
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 24px;
  transition: all 300ms ease;
}

.investment-icon {
  width: 56px;
  height: 56px;

  background: #e9ebe4;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 300ms ease;
}

.investment-item:hover {
  background: #e9ebe4;
}

.investment-item:hover .investment-icon {
  background: #fff;
}

.investment-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.investment-content h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  margin-bottom: 0;
  color: #2e4e35;
  font-family: Raleway, sans-serif !important;
  text-align: left;
}

.investment-content p {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: center;

  color: #2e4e35;
}

.investment-link {
  display: flex;
  margin-left: auto;
  color: #2e4e35;
  transition: all 300ms ease;
}

.investment-item:hover .investment-link {
  color: #2e4e35;
}

@media screen and (max-width: 768px) {
  .investment-outcomes {
    margin-top: 0;
  }
  .investment-outcomes-wrapper {
    padding: 40px 10px;
    gap: 40px;
  }

  .investment-title {
    font-size: 32px !important;
    line-height: 38px !important;
    margin-bottom: 16px !important;
  }
  .investment-subtitle {
    font-weight: 600;
    font-size: 16px !important ;
    line-height: 19px !important;
    max-width: 100%;
  }

  .investment-outcomes-header {
    gap: 24px;
  }

  .accordion-wrapper {
    gap: 10px;
    width: 100%;
  }

  .accordion-item {
    padding: 20px 10px;
    gap: 0;
  }

  .investment-item > a {
    padding: 8px 10px;
    width: 100%;
  }
  .accordion-toggle {
    padding: 7px 10px;
  }
  .accordion-toggle .accordion-subtitle {
    display: none;
  }
  .accordion-title {
    margin-bottom: 0;
  }

  .accordion-toggle .accordion-title {
    margin-bottom: 0;
    font-size: 16px !important;
  }
  .investment-content h3 {
    font-size: 16px !important;
  }
  .investment-item {
    border: 1px solid #e9ebe4;
  }
  .investment-link {
    color: #f1b314;
  }

  .accordion-icon {
    right: 10px;
  }

  .investment-content p {
    display: none;
  }
  .investment-icon {
    width: 44px;
    height: 44px;
  }
  .investment-item {
    height: 68px;
    display: flex;
  }

  .investment-list {
    margin-bottom: 0;
  }
}
