/* ================================
   ABOUT PAGE – NEW CARD DESIGN
================================ */

/* Main Wrapper */
.about-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background: #f8f5ef; /* matches your site background */
}

/* CARD CONTAINER */
.about-card {
  background: #ffffff;
  width: 100%;
  max-width: 850px;
  border-radius: 20px;
  padding: 40px 35px;
  text-align: center;
  box-shadow: 0px 8px 30px rgba(0,0,0,0.12);
}

/* Founder Image */
.about-card .founder-img {
  width: 200px;
  height: 280px;
  object-fit: cover;
  border-radius: 15px;
  margin: 0 auto 25px;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
}

/* Title */
.about-title {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  margin-bottom: 5px;
}

.about-title-line {
  width: 70px;
  height: 4px;
  background: #b59052;
  margin: 10px auto 25px;
  border-radius: 50px;
}

/* Text Content */
.about-text {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  text-align: center; /* Centered text like Organizers page */
}

.about-text h2 {
  margin-top: 25px;
  font-size: 24px;
  font-weight: 700;
  color: #b59052;
}

.about-text ul {
  margin-top: 12px;
  text-align: left;
  display: inline-block; /* centers block list */
  padding-left: 20px;
}

.about-text li {
  font-size: 17px;
  margin-bottom: 8px;
}

/* ================================
        RESPONSIVE BEHAVIOR
================================ */

@media(max-width: 768px) {
  .about-card {
    padding: 30px 20px;
  }

  .about-title {
    font-size: 28px;
  }

  .about-text {
    font-size: 16px;
  }
}

@media(max-width: 480px) {
  .about-card .founder-img {
    width: 140px;
    height: 200px;
  }

  .about-title {
    font-size: 24px;
  }

  .about-text {
    font-size: 15px;
    line-height: 1.6;
  }
}
