/* PRIVACY / TERMS PAGE */

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: border-box;
}
.policy-hero {
  background: linear-gradient(135deg, #2980B9, #000);
  padding: 80px 40px 60px;
  text-align: center;
  color: #fff;
}
.policy-hero p {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #AEE1E1;
  margin-bottom: 14px;
}
.policy-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 14px;
}
.policy-hero span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.policy-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  background: #f0f8ff;
  padding: 20px 40px;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 60px;
  z-index: 90;
}
.policy-tab {
  padding: 10px 28px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid #3498DB;
  color: #3498DB;
  background: transparent;
  transition: all 0.2s;
}
.policy-tab.active, .policy-tab:hover {
  background: #3498DB;
  color: #fff;
}

.policy-wrapper {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 40px;
  box-sizing: border-box;
}

.policy-section { display: none; }
.policy-section.active { display: block; }

.policy-intro {
  background: #f0f8ff;
  border-left: 4px solid #3498DB;
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin-bottom: 40px;
  font-size: 0.95rem;
  color: #7F8C8D;
  line-height: 1.75;
}

.policy-block {
  margin-bottom: 40px;
}

.policy-block-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.policy-num {
  background: #3498DB;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.policy-block h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #000;
  margin: 0;
}

.policy-block p {
  font-size: 0.92rem;
  color: #7F8C8D;
  line-height: 1.8;
  margin-bottom: 10px;
}

.policy-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-block ul li {
  font-size: 0.92rem;
  color: #7F8C8D;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.policy-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3498DB;
}

.policy-divider {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 36px 0;
}

.policy-contact-card {
  background: linear-gradient(135deg, #2980B9, #000);
  border-radius: 14px;
  padding: 36px;
  color: #fff;
  margin-top: 40px;
}

.policy-contact-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #AEE1E1;
}

.policy-contact-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 8px;
}

.policy-contact-card a {
  color: #AEE1E1;
  text-decoration: none;
}

.policy-contact-card a:hover { color: #fff; }

@media (max-width: 600px) {
  .policy-hero h1 { font-size: 1.8rem; }
  .policy-wrapper { padding: 40px 20px; }
  .policy-tabs { padding: 16px 20px; flex-wrap: wrap; }
  .policy-hero { padding: 60px 20px 40px; }
}
