/* ===== Base Styles ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(to right, #eef2f3, #dbe9f4);
  padding: 0;
  min-height: 100vh;
  color: #1e293b;
  overflow-x: hidden;
}

/* ========== HEADER & BOTTOM NAV STYLES REMOVED ========== */
/* Note: Header styles ab /components/header/header.css mein hain */
/* Note: Bottom Nav styles ab /components/bottomnav/bottomnav.css mein hain */
/* Note: Drawer menu styles ab /components/header/header.css mein hain */

/* ===== ABOUT PAGE STYLES ===== */
.about-page {
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  color: #1e293b;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}

.about-page h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #0f172a;
  border-bottom: 3px solid #3b82f6;
  display: inline-block;
  padding-bottom: 5px;
}

.about-page h2 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #1e40af;
}

.about-page p {
  margin-bottom: 15px;
  font-size: 16px;
}

.about-page ul {
  padding-left: 20px;
  margin-top: 10px;
}

.about-page ul li {
  margin-bottom: 8px;
  font-size: 15px;
  list-style-type: disc;
}

.about-page a {
  color: #2563eb;
  text-decoration: underline;
}

.about-page a:hover {
  color: #1d4ed8;
}

/* =================== RESPONSIVE FIX =================== */
/* Desktop: footer sticks to bottom */
@media (min-width: 768px) {
  #footer-container {
    margin-top: auto;
  }
}

/* Mobile: footer sits above bottom nav */
@media (max-width: 767px) {
  #footer-container {
    margin-bottom: 55px; /* space for nav */
  }
  
  .about-page {
    padding: 30px 15px;
    margin-bottom: 20px;
  }
  
  .about-page h1 {
    font-size: 26px;
  }
  
  .about-page h2 {
    font-size: 20px;
    margin-top: 25px;
  }
  
  .about-page p,
  .about-page ul li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .about-page {
    padding: 20px 12px;
  }
  
  .about-page h1 {
    font-size: 24px;
  }
  
  .about-page h2 {
    font-size: 18px;
  }
}
