.investment-display-section {
  padding: 6rem 1rem;
  background-color: #fff;
  font-family: 'Inter', sans-serif;
}

.investment-header {
  text-align: center;
  margin-bottom: 4rem;
}

.investment-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.investment-header p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.investment-blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.investment-block {
  border-top: 1px solid #e0e0e0;
  padding-top: 2.5rem;
}

.investment-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #222;
}

.investment-block .range {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.investment-block p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.investment-footer {
  text-align: center;
  margin-top: 5rem;
}

.investment-cta {
  display: inline-block;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  color: #1a1a1a;
  padding: 0.8rem 2rem;
  border: 1px solid #ccc;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.investment-cta:hover {
  background-color: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

@media (min-width: 768px) {
  .investment-blocks {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
