body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #333;
}

.about-section {
  padding: 60px 20px;
  
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.about-images {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.about-content {
  width: 55%;
}

.about-content h1 {
  font-size: 40px;
  margin-bottom: 20px;
  background: linear-gradient(to right, #111, #555);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 30px;
}

.about-points {
  list-style: none;
  padding: 0;
}

.about-points li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 18px;
  margin-bottom: 16px;
}

.check {
  color: #1a7f37;
  font-size: 20px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-images,
  .about-content {
    width: 100%;
  }

  .about-content h1 {
    font-size: 28px;
  }
}
