.invest-section {
  width: 100%;
  max-width: 1300px;
  margin: 60px auto;
  padding: 40px;
  display: flex;
  gap: 50px;
  /* ky është thelbësor që kolonat të kenë të njëjtin height */
  align-items: stretch;
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid rgba(193, 115, 57, 0.35);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(250, 247, 243, 0.4) 100%
  );
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.invest-text {
  flex: 1;
}

.invest-image {
  flex: 1;
  /* lëre height:auto, flex do ta shtrijë sa container-i */
  display: flex;
}

.invest-image img {
  display: block;
  width: 100%;
  height: 100%; /* tani funksionon sepse prindi shtrihet */
  object-fit: cover; /* pret bukur pa deformuar */
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  object-position: 40% center;
}

/* pjesa tjetër e stilit tënd siç ishte */
.invest-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 18px;
}

.invest-title span {
  color: var(--primary-color);
}

.invest-subtitle {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
}

.invest-block {
  margin-bottom: 25px;
}

.invest-block h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.invest-block p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

.invest-cta {
  margin-top: 30px;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
}

.invest-cta h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.invest-cta p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.invest-button {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 4px;
  font-size: 15px;
  transition: 0.3s;
  margin-top: 25px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.invest-button:hover {
  background: var(--primary-color);
  color: white;
}

.invest-cta-note {
  margin-top: 25px;
  padding: 18px 20px;
  border-left: 3px solid var(--primary-color);
  background: linear-gradient(
    90deg,
    rgba(193, 115, 57, 0.1),
    rgba(255, 255, 255, 0)
  );
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  border-radius: 4px;
  font-style: italic;
}

/* Mobile */
@media (max-width: 991px) {
  .invest-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
  .invest-section {
    flex-direction: column;
    align-items: flex-start; /* rikthe normale në mobile */
    padding: 20px;
    margin: 10px 20px;
  }

  .invest-image {
    width: 100%;
  }

  .invest-image img {
    width: 100%;
    height: auto; /* në mobile lë height proporcional */
    object-fit: cover;
    object-position: center center;
  }
}
