/* === PAGE BACKGROUND === */
body {
  background: linear-gradient(180deg, #41006b, #9a57b4);
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
}

/* === MAIN CONTAINER === */
.about-container {
  max-width: 1050px;
  margin: 3rem auto;
  padding: 2rem;
  background: #fff;                         
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.4);
  color: #000;                               
}

.about-container h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
  color: #41006b;                           
}

.about-container p {
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #333;
}

/* =========================== */
/* Flex section: image + list  */
/* =========================== */
.about-flex {
  display: flex;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.about-image img {
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.about-text {
  flex: 1;
  min-width: 250px;
}

.about-text h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff9600;                            
}

.about-text ul {
  margin-left: 20px;
  list-style: disc;
  line-height: 1.7;
  color: #444;
}

/* =========================== */
/* Feature circles section     */
/* =========================== */
.features-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.feature-box {
  text-align: center;
  flex: 1;
  min-width: 220px;
}

.feature-circle {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: #eee;
  border: 3px solid #ff9600;                
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.feature-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-title {
  font-weight: 700;
  margin-top: 12px;
  color: #41006b;                            
}

.feature-sub {
  margin-top: 4px;
  color: #666;
  font-size: 0.9rem;
}

/* =========================== */
/* Footer placeholder          */
/* =========================== */
.about-footer-space {
  height: 80px;
  background: #eee;
  margin-top: 50px;
  border-radius: 8px;
}

/* =========================== */
/* Responsive adjustments      */
/* =========================== */
@media (max-width: 768px) {
  .about-flex {
    flex-direction: column;
  }

  .features-row {
    flex-direction: column;
    text-align: center;
  }

  .feature-box {
    margin-bottom: 25px;
  }
}
