.left {
  flex: 1;
}

.left h1 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.left p {
  font-size: 16px;
  color: #5b6472;
  margin-bottom: 25px;
  line-height: 1.6;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 30px;
  margin-bottom: 30px;
}

.feature {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #374151;
}

.feature::before {
  content: "✔";
  color: #22c55e;
  margin-right: 10px;
  font-weight: bold;
}

/* RIGHT SIDE */
.right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}