/* About Page Styles */

/* Header solid variant */
.header-solid {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

/* Hero Section */
.about-page {
  padding-top: 72px;
}

.hero-section {
  background: #000000;
  padding: 80px 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* About Section */
.about-section {
  background: #000000;
  padding: 60px 0;
}

.about-block {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.about-block:last-child {
  margin-bottom: 0;
}

.about-block h2 {
  font-size: 1.75rem;
  color: white;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.about-block p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-block p:last-child {
  margin-bottom: 0;
}

/* Audience Grid */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.audience-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 28px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.4);
}

.audience-card h3 {
  font-size: 1.25rem;
  color: rgba(212, 175, 55, 0.9);
  margin-bottom: 12px;
}

.audience-card p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: rgba(212, 175, 55, 0.8);
  border-radius: 50%;
}

/* Contact Section */
.contact-email {
  margin-top: 16px;
}

.contact-email a {
  display: inline-block;
  color: rgba(212, 175, 55, 0.9);
  font-size: 1.125rem;
  text-decoration: none;
  padding: 12px 24px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.contact-email a:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
  background: #000000;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  font-size: 1.125rem;
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 20px;
  }

  .hero-section h1 {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .about-block h2 {
    font-size: 1.5rem;
  }

  .about-block p {
    font-size: 1rem;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .audience-card {
    padding: 24px;
  }

  .audience-card h3 {
    font-size: 1.125rem;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .btn-large {
    padding: 14px 32px;
    font-size: 1rem;
  }
}

/* RTL Support */
html[dir="rtl"] .feature-list li {
  padding-left: 0;
  padding-right: 32px;
}

html[dir="rtl"] .feature-list li::before {
  left: auto;
  right: 0;
}
