/* ═══════════════════════════════════════════
   ABOUT PAGE — Specific Styles
   Uses variables & classes from main filecraftyhub.css
   ═══════════════════════════════════════════ */

.about-section {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}

.about-section h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.4px;
}

.about-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-features li {
  font-size: 0.92rem;
  padding-left: 28px;
  position: relative;
  color: var(--text-muted);
}

.about-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
}

.tools-list {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 22px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
}

/* About Page Specific Hero / Intro */
.about-hero {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  border-radius: var(--radius);
  margin-bottom: 32px;
}

.about-hero h1 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.about-hero p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 640px) {
  .about-section {
    padding: 22px;
    margin-bottom: 20px;
  }
  
  .about-features li {
    font-size: 0.9rem;
  }
}