* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
  color: #e0e0e0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px;
}

.container {
  max-width: 900px;
  width: 100%;
}

/* --- HEADER STYLES --- */
header {
  text-align: center;
  margin-bottom: 40px;
}

.header-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr; 
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
  width: 100%;
}

.header-row > :nth-child(1) { justify-self: end; }
.header-row > :nth-child(2) { justify-self: center; text-align: center; }
.header-row > :nth-child(3) { justify-self: start; }

.header-logo {
  height: 2.5rem;
  width: auto;
  display: block;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1; 
  white-space: nowrap;
}

.subtitle {
  color: #888;
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-top: 15px;
}

/* --- GLASS PANEL --- */
.glass-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* --- CONTENT STYLES --- */
.policy-content h2 {
  font-size: 1.8rem;
  color: #fff;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.policy-content h2:first-of-type { margin-top: 0; }

.policy-content h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #667eea;
}

.policy-content p, .policy-content li {
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.policy-content ul {
  padding-left: 25px;
  margin-bottom: 1.5rem;
}

.policy-content a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.2s ease;
}

.policy-content a:hover {
  color: #764ba2;
  text-decoration: underline;
}

/* --- BACK BUTTON --- */
.back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  color: #fff;
}

/* --- FOOTER --- */
footer {
  text-align: center;
  margin-top: 40px;
  color: #666;
  font-size: 0.9rem;
  padding-bottom: 20px;
}

footer a { color: #667eea; text-decoration: none; }

/* --- MODAL STYLES --- */
.modal {
  display: none;
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center; align-items: center;
  z-index: 2000;
}
.modal-content {
  background: #1a1a2e;
  border: 1px solid #667eea;
  padding: 30px;
  border-radius: 15px;
  width: 90%; max-width: 600px;
  position: relative;
  text-align: left;
}
.close-modal { 
  position: absolute; top: 10px; right: 15px; 
  cursor: pointer; font-size: 1.5rem; color: #fff;
}

/* Mobile Responsive */
@media (max-width: 650px) {  
  h1 { font-size: 2rem; } 
  .header-logo { height: 2rem; } 
  .header-row { display: flex; flex-direction: column; gap: 15px; }
  .glass-panel { padding: 20px; }
}  

/* --- NEW CLASSES REPLACING INLINE STYLES --- */
.last-updated {
  color: #888; 
  margin-bottom: 2rem;
}

.contact-address {
  font-style: normal; 
  margin-left: 20px; 
  border-left: 2px solid #666; 
  padding-left: 15px; 
  color: #aaa;
}

.footer-divider {
  margin: 0 10px; 
  opacity: 0.5;
}

.modal-title {
  color: #667eea; 
  margin-bottom: 15px;
}

.modal-desc {
  color: #aaa; 
  margin-bottom: 15px;
}