/* ==== About Page Styles ==== */

.about-content {
  flex: 1;
  min-height: calc(100vh - 150px); /* حتى لا يلتصق الفوتر */
  padding: 4rem 2rem;
  background-color: #ffffff;
  text-align: center;
}

.about-content h1 {
  font-size: 2.8rem;
  color: #1e272e;
  margin-bottom: 1.5rem;
}

.about-content p {
  max-width: 850px;
  margin: 0 auto 1.5rem auto;
  font-size: 1.2rem;
  line-height: 2;
  color: #2c3e50;
}

.back-btn {
  margin-top: 2rem;
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background-color: #f1c40f;
  color: #1e272e;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.back-btn:hover {
  background-color: #e0b200;
}
.about-section {
  background-color: #f8f9fa;
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
}

.about-card {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  width: 100%;
  line-height: 2;
  font-size: 1.1rem;
  color: #2c3e50;
}