.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}
.featured {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
  color: var(--text-color);
}

.featured-content {
  flex: 1;
}

.featured-image {
  flex: 0.8;
  text-align: right;
}
.featured-image img {
  height: 60% !important;
}
.featured-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  word-break: break-word;
}

@media (max-width: 768px) {
  .featured-content h1 {
    font-size: 1.6rem;
    font-weight: 600;
  }
}

.featured-content h1 span {
  color: var(--secondary-color);
}

.featured-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: justify;
  line-height: 1.6;
}

.featured-content .btn {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.featured-content .btn:hover {
  opacity: 0.85;
  transform: scale(1.05);
}
.investment-section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--text-color);
  font-weight: bold;
}
.featured-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.section-title span {
  color: var(--secondary-color);
}

.investment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 auto;
}

.investment-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 8px 40px 5px #00000040;
  transition: transform 0.3s ease;
}

.investment-card:hover {
  transform: translateY(-5px);
}

.investment-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.investment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.investment-card:hover .investment-image img {
  transform: scale(1.05);
}

.investment-content {
  padding: 1.5rem;
}

.investment-content h2 {
  font-size: 1.5rem;
  color: var(--secondary-dark);
  margin-bottom: 1rem;
  font-weight: bold;
}

.investment-content p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.invest-btn {
  display: inline-flex;
  align-items: center;
  color: var(--secondary-dark);
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.invest-btn:hover {
  opacity: 0.9;
}

.invest-btn span {
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .featured {
    flex-direction: column;
    text-align: center;
  }

  .featured-image {
    margin-top: 2rem;
  }

  .investment-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-title {
    font-size: 2rem;
    padding: 0 1rem;
  }

  .investment-card {
    max-width: 100%;
  }

}
