.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.financing-module {
  box-sizing: border-box;
  margin: 0px;
  text-align: left;
  border-width: 5px;
  border-style: solid;
  border-color: #207e20;
  width: 650px;
  border-radius: 4px;
}

.financing-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 400px;
  padding: 20px;
  border: 5px solid #207e20;
  border-radius: 8px;
  text-align: center;
}

.financing-info h3 {
  color: #207e20;
  margin-bottom: 10px;
}

.financing-info p {
  line-height: 1.5;
}

.financing-content {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  padding: 2% 0;
  max-width: 90vw;
  width: 100%;
  margin: 0 auto;
}

@media(max-width: 1100px) {
.financing-content{
  flex-direction: column;
  align-items: center;
}

.financing-info{
  max-width: 650px;
}
}

@media (max-width: 768px) {

  .financing-module,
  .financing-info {
    width: 100%;
    max-width: none;
  }

  .content-wrapper {
    flex-direction: column;
  }

  .financing-info {
    padding: 15px;
  }
}