.about-screen {
  position: relative;
  z-index: 2;
  max-width: 540px;
  margin: 0 auto;
  padding: 10px 24px 50px;
  text-align: center;
}

.about-ink-drop {
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.35));
}

.about-title {
  font-family: 'Aref Ruqaa', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-tagline {
  color: var(--blue-light);
  opacity: 0.9;
  margin-top: 6px;
  margin-bottom: 30px;
  font-size: 1rem;
}

.about-section {
  text-align: right;
  margin-bottom: 22px;
}

.about-section h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 8px;
}

.about-section p {
  color: var(--cream);
  opacity: 0.85;
  font-size: 0.95rem;
  line-height: 1.9;
}

.about-section ul {
  color: var(--cream);
  opacity: 0.85;
  font-size: 0.92rem;
  line-height: 1.9;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-section ul strong {
  color: var(--gold-light);
}

.about-cta {
  display: inline-block;
  margin-top: 10px;
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 999px;
  padding: 14px 32px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
  transition: transform 0.15s ease;
}

.about-cta:hover {
  transform: translateY(-2px) scale(1.02);
}
