body {
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  background: url("assets/BACKGROUND.jpg") no-repeat center center fixed;
  background-size: cover;
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px; /* space between logos */
  margin-bottom: 25px;
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.45); 
  border-radius: 14px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.logo { 
  height: auto;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.35));
}
.left-logo {
  max-width: 220px;
}

.right-logo {
  max-width: 120px;
}
/* Dark overlay for readability */
.overlay {
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.55);
  padding: 40px 15px;
}

.policy-container {
  max-width: 900px;
  margin: auto;
  background: rgba(255, 255, 255, 0.96);
  padding: 30px 50px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

 

.app-title {
  font-weight: 700;
  color: #1f2937;
}

.section-title {
  margin-top: 35px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #111827;
  border-left: 4px solid #0d6efd;
  padding-left: 12px;
}

p {
  color: #374151;
  line-height: 1.8;
  font-size: 15.5px;
}

ul,
ol {
  padding-left: 1.2rem;
  color: #374151;
  font-size: 15.5px;
}

li {
  margin-bottom: 8px;
}

.updated-date {
  color: #6b7280;
  font-size: 14px;
}

.divider {
  height: 1px;
  background: #e5e7eb;
  margin: 30px 0;
}
