/* C:\xampp_8.2_TICL\htdocs\ticl_web\public\assets\css\pages\private-policy-style.css */

body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 20px;
  color: #333;
}

.policy-container {
  max-width: 800px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* STICKY TOP BAR (Logo + Language switcher + Home) */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 12px 30px;
  margin: -30px -30px 20px -30px;
  border-bottom: 1px solid #eee;
  border-radius: 8px 8px 0 0;
}

.home-logo-link {
  display: flex;
  align-items: center;
}

.home-logo {
  height: 28px;
  width: auto;
}

.right-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language-switcher {
  display: flex;
  gap: 8px;
}

.home-text-link {
  text-decoration: none;
  color: #1D8FCB;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.home-text-link:hover {
  opacity: 0.75;
}

.language-button {
  border: 1px solid #1D8FCB;
  background: white;
  color: #1D8FCB;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.language-button:hover,
.language-button.active {
  background: #1D8FCB;
  color: white;
}

h1 {
  color: #1D8FCB;
  margin-bottom: 10px;
}

h2 {
  margin-top: 30px;
  color: #1D8FCB;
}

ul {
  padding-left: 20px;
}

p, li {
  line-height: 1.6;
  font-size: 16px;
}