/* ====================
   Policy Pages Styles
   ==================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: white;
  min-height: 100vh;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 2px solid #4facfe;
  margin-bottom: 30px;
}

h1 {
  color: #2c3e50;
  font-size: 28px;
  font-weight: bold;
}

.language-selector {
  display: flex;
  align-items: center;
}

.lang-btn {
  background: #4facfe;
  border: none;
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 50px;
}

.lang-btn:hover {
  background: #3a8bfe;
  transform: translateY(-1px);
}

.content {
  animation: fadeIn 0.3s ease-in;
}

.last-updated {
  background: #e8f4ff;
  padding: 10px 15px;
  border-left: 4px solid #4facfe;
  margin-bottom: 25px;
  font-size: 14px;
  color: #666;
}

section {
  margin-bottom: 30px;
}

h2 {
  color: #2c3e50;
  font-size: 20px;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

p {
  margin-bottom: 15px;
  text-align: justify;
}

ul {
  margin: 15px 0;
  padding-left: 25px;
}

li {
  margin-bottom: 8px;
}

strong {
  color: #2c3e50;
  font-weight: bold;
}

footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  text-align: center;
}

.back-link {
  color: #4facfe;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px;
  border: 2px solid #4facfe;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: inline-block;
}

.back-link:hover {
  background: #4facfe;
  color: white;
  transform: translateY(-1px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .container {
    padding: 15px;
    box-shadow: none;
  }
  
  header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  h1 {
    font-size: 24px;
  }
  
  h2 {
    font-size: 18px;
  }
  
  .lang-btn {
    padding: 6px 12px;
    font-size: 12px;
    min-width: 40px;
  }
}