body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f6fcfb;
  color: #1a1a1a;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.about-hero {
  background: linear-gradient(135deg, #748DAE, #748DAE);
  color: white;
  text-align: center;
  padding: 80px 20px 60px;
  clip-path: ellipse(100% 80% at 50% 0%);
}

.about-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.about-hero h1 span {
  color: #c7f141;
}

.about-hero p {
  font-size: 18px;
  opacity: 0.9;
}

.about-main {
  background-color: white;
  margin-top: -40px;
  padding: 60px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.about-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-image {
  flex: 1 1 45%;
}

.about-image img {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.about-text {
  flex: 1 1 50%;
}

.about-text h2 {
  font-size: 30px;
  color: #748DAE;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-points h3 {
  color: #748DAE;
  margin-bottom: 10px;
}

.about-points ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.about-points li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
}

.about-btn {
  background: #748DAE;
  color: #042f2e;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: #5278a9;
}
