/* About Page Styles */

.about-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.about-section h2 {
  font-size: 32px;
  color: #1e3c72;
  margin-bottom: 50px;
}

.about-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  max-width: 1100px;
  margin-inline: auto;
  flex-wrap: wrap;
}

.about-box.reverse {
  flex-direction: row-reverse;
}

.about-image lottie-player {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.about-content {
  flex: 1;
  min-width: 280px;
  text-align: left;
}

.about-content h3 {
  font-size: 24px;
  color: #1e3c72;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #444;
}

.about-content ul {
  list-style: none;
  padding-left: 0;
}

.about-content ul li {
  background-color: #fff3cd;
  color: #856404;
  padding: 10px 15px;
  margin-bottom: 8px;
  border-left: 5px solid #ffd700;
  border-radius: 6px;
  font-size: 14px;
}

/* Back Button */
.btn {
  background-color: #1e3c72;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #163261;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-box {
    flex-direction: column !important;
    text-align: center;
  }

  .about-content {
    text-align: center;
  }

  .about-content ul li {
    text-align: left;
  }
}
