body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.why-choose-section {
    max-width: 1300px;
    margin: auto;
  padding: 60px 20px;

}

.why-choose-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

/* Title */
.section-title {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(to right, #111, #555);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
  text-align: left;
}

/* List */
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.check {
  width: 36px;
  height: 36px;
  background: linear-gradient(to bottom, #4ea0ff, #000);
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-list p {
  margin: 0;
  font-size: 17px;
  line-height: 1.4;
  color: #555;
}

/* Image */
.why-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* Responsive */
@media (max-width: 992px) {
  .why-choose-container {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 30px;
    text-align: center;
  }

  .why-right {
    order: -1;
  }
}
