﻿.section {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.investment-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: auto;
}

.investment-item {
  flex: 1;
  padding: 3rem 2rem;
  background-color: white;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  align-items: center;
}

.investment-item h2 {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2rem;
}

.investment-item h3 {
  color: var(--color-gray-500, #667085);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}

.investment-item p {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.investment-item article {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quote {
  text-align: center;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 30px;
}

.list-container ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.list-container ul li {
    font-size: 1rem;
    padding-left: 0; /* Remove left padding */
    display: inline-block;
    position: relative;
    padding-bottom: 1rem;
}

.list-container ul li::before {
    content: '';
    display: inline-block;
    background-image: url('../img/icons/checkmark-outlined-blue.svg'); /* Path to your icon */
    background-size: contain;
    background-repeat: no-repeat;
    width: 1rem;
    height: 1rem;
    margin-right: 1rem;
    vertical-align: top;
}

@media (min-width: 768px) {
  .investment-items {
    flex-flow: row wrap;
    max-width: 704px;
  }

  .investment-item {
    justify-content: space-between;
    flex: 1 1 272px;
  }
}

@media (min-width: 992px) {
  .investment-items {
    max-width: 1216px;
    flex-wrap: nowrap;
  }

  .investment-item {
    flex: 1 1 280px;
  }

  .quote-section {
    max-width: 660px;
    margin: auto;
  }
}
