/* RefZone About Page - Public */
:root {
  --purple: #7a1fbf;
  --pink: #ff2f7d;
  --bg-light: #f7f7f9;
  --text-dark: #222;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
}

.about-hero {
  background: #fff;
  text-align: center;
  padding: 4rem 1rem 2rem;
}

.about-hero .hero-brand {
  font-size: 2rem;
  color: var(--purple);
  margin: 0;
}

.about-hero h2 {
  font-size: 2.5rem;
  margin: .5rem 0 1rem;
}

.about-hero .lead {
  font-size: 1.2rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.about-hero .hero-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Side-by-side info blocks */
.info-block {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto;
  padding: 3rem 1rem;
}

.info-block img {
  width: 50%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.info-block .info-text {
  flex: 1;
}

.info-block .info-text ul {
  margin: 0 0 1rem 1.25rem;
  list-style: disc;
}

.info-block .info-text li {
  margin-bottom: .5rem;
}

.info-block h2,
.info-block h3 {
  color: var(--purple);
  margin-top: 0;
}

.info-block p {
  line-height: 1.6;
}

.info-block.reverse {
  flex-direction: row-reverse;
}

.fade-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 768px) {
  .info-block {
    flex-direction: column;
    text-align: center;
  }

  .info-block.reverse {
    flex-direction: column;
  }

  .info-block img {
    width: 100%;
  }
}
