.about-page {
  min-height: 100vh;
  padding: 2rem;
  transition: all 0.3s ease;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-header h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: rgba(1, 50, 46, 0.98);
}

body.dark-mode .about-header h1 {
  text-shadow: 0 0 20px rgba(1, 50, 46, 0.5);
}

.logo-display {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  padding: 2rem;
}

.about-content {
  display: grid;
  gap: 3rem;
}

.founder-section,
.app-info,
.social-section {
  background: #f5f0e8;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(1, 50, 46, 0.3);
}

body.dark-mode .founder-section,
body.dark-mode .app-info,
body.dark-mode .social-section {
  background: #000000;
  border-color: #000000;
}

.founder-section h2,
.app-info h2,
.social-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: rgba(1, 50, 46, 0.98);
  text-align: center;
}

body.dark-mode .founder-section h2,
body.dark-mode .app-info h2,
body.dark-mode .social-section h2 {
  text-shadow: 0 0 15px rgba(1, 50, 46, 0.5);
}

.founder-card {
  text-align: center;
  padding: 2rem;
  background: rgba(1, 50, 46, 0.05);
  border-radius: 15px;
  border-right: 4px solid rgba(1, 50, 46, 0.98);
}

body.dark-mode .founder-card {
  background: #000000;
}

.founder-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(1, 50, 46, 0.98);
  margin-bottom: 0.5rem;
}

body.dark-mode .founder-name {
  text-shadow: 0 0 15px rgba(1, 50, 46, 0.5);
}

.founder-name-ar {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.founder-description {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
}

.info-card p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: justify;
}

.features-list {
  display: grid;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(1, 50, 46, 0.05);
  border-radius: 10px;
  border-right: 3px solid rgba(1, 50, 46, 0.3);
  font-size: 1.1rem;
}

body.dark-mode .feature-item {
  background: #000000;
}

.feature-icon {
  font-size: 2rem;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(1, 50, 46, 0.05);
  border-radius: 15px;
  border: 2px solid rgba(1, 50, 46, 0.3);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

body.dark-mode .social-card {
  background: #000000;
  border-color: #000000;
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(1, 50, 46, 0.3);
  border-color: rgba(1, 50, 46, 0.98);
}

.social-icon {
  font-size: 3rem;
}

.social-icon-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.social-info {
  flex: 1;
}

.social-label {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.social-account {
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(1, 50, 46, 0.98);
}

body.dark-mode .social-account {
  text-shadow: 0 0 10px rgba(1, 50, 46, 0.5);
}

@media (max-width: 768px) {
  .about-header h1 {
    font-size: 2rem;
  }
  
  .founder-section,
  .app-info,
  .social-section {
    padding: 2rem 1.5rem;
  }
  
  .founder-name {
    font-size: 2rem;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}
