/* ==========================================================
   HEADER
========================================================== */
header {
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1, .logo {
  color: #0d6efd;
  font-size: 24px;
  font-weight: 700;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover, nav a.active {
  color: #0d6efd;
}


/* ----------------------------
   Maintenance Page Styling
----------------------------- */
.maintenance-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: calc(100vh - 160px);
  background-color: #f9fbfd;
  text-align: center;
  padding: 40px 20px;
}

.maintenance-box {
  background: #fff;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  animation: fadeIn 1.2s ease;
}


.maintenance-box h1 {
  font-size: 32px;
  color: #0d6efd;
  margin-bottom: 15px;
}

.maintenance-box p {
  color: #555;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .maintenance-box {
    padding: 30px 20px;
  }
  .maintenance-box h1 {
    font-size: 26px;
  }
  .maintenance-box p {
    font-size: 16px;
  }
  .smiley-img {
    width: 70px;
    height: 70px;
  }
}

/* ==========================================================
   FOOTER
========================================================== */
footer {
  text-align: center;
  padding: 25px;
  font-size: 15px;
  color: #555;
  background: #fff;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
  margin-top: 60px;
}





/* ==========================================================
   POLICY & LEGAL PAGES
========================================================== */
.policy-section {
  max-width: 900px;
  margin: 60px auto;
  background: #fff;
  padding: 40px 50px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  line-height: 1.7;
}

.policy-section h1 {
  color: #0d6efd;
  margin-bottom: 20px;
  text-align: center;
}

.policy-section h3 {
  color: #0d6efd;
  margin-top: 25px;
  margin-bottom: 10px;
}

.policy-section p {
  color: #444;
  margin-bottom: 10px;
}

.policy-section a {
  color: #0d6efd;
  text-decoration: none;
}

.policy-section a:hover {
  text-decoration: underline;
}


