/* =========================
   ABOUT PAGE — Elite5Pro
   ========================= */

.about-section {
  background: var(--bg);
  padding: 36px 0 0px;
}

.about-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--container-side);
  box-sizing: border-box;
}

.about-section h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--accent);
}

.about-section h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--accent);
}

.about-section p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 14px;
}

.about-lead {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
}

.about-categories,
.about-approach,
.about-why {
  list-style: none;
  padding: 0;
  margin: 12px 0 18px;
}

.about-categories li,
.about-approach li,
.about-why li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 10px;
  color: var(--muted);
}

.about-categories li::before,
.about-approach li::before,
.about-why li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

.about-process {
  padding-left: 18px;
  margin: 12px 0 18px;
}

.about-process li {
  margin-bottom: 10px;
  color: var(--muted);
}

.about-closing {
  font-weight: 600;
  color: var(--accent);
  margin-top: 18px;
}

.about-contact {
  margin-top: 32px;
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(77, 107, 255, 0.06),
    rgba(0, 198, 199, 0.04)
  );
}

.about-contact a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.about-contact a:hover {
  text-decoration: underline;
}
.about-note a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.about-note a:hover {
  text-decoration: underline;
}

/* ===============================
   ABOUT PAGE – BLUE DIAMOND BULLETS
   =============================== */

/* Remove default bullets */
.about-wrap ul {
  list-style: none;
  padding-left: 0;
  margin: 14px 0 18px;
}

/* List item spacing */
.about-wrap ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Blue diamond bullet */
.about-wrap ul li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  color: #1a73e8; /* Elite5Pro blue */
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 720px) {
  .about-section h1 {
    font-size: 24px;
  }

  .about-section h2 {
    font-size: 18px;
  }

  .about-section p {
    font-size: 14px;
  }
}
