.need-help-section {
  padding: 0px 20px;
}

.need-help-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: nowrap; /* responsive stacking */
  color: var(--text-grey);
}

.section-title {
  color: var(--purple-color);
}

.left-column,
.right-column {
  box-sizing: border-box;
}

.left-column {
  flex: 0 0 50%; /* fixed 40% width */
}

.right-column {
  flex: 0 0 50%; /* fixed 60% width */
  padding-right: 40px;
}

.left-column img {
  width: 90%;
  height: auto;
  border-radius: 12px;
}

.right-column h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.right-column p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  font-weight: 400;
}

p > i {
  color: var(--orange-color);
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
  .need-help-section .container {
    flex-direction: column-reverse;
  }

  .left-column,
  .right-column {
    flex: 1 1 100%;
  }
  .right-column {
    padding-right: 0px;
  }
}
