.policy {
  font-family: var(--exo);
  font-size: 16px;
  line-height: 1.7;
  color: #f5f5f5;
}

.policy__title {
  font-size: clamp(24px, 2.4vw, 32px);
  margin: 0 0 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-bottom: 16px;
}

.policy__org {
    margin-bottom: 20px;
    font-size: 16px;
}

.policy__org p {
  margin: 4px 0;
}

.policy__org-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 8px;
}

.policy__intro {
  margin: 16px 0 24px;
}

.policy__section {
  margin-top: 24px;
  padding-top: 16px;
}

.policy__subtitle {
  font-size: 18px;
  margin: 0 0 12px;
  font-weight: 600;
}

.policy p {
  margin: 8px 0;
}

.policy ul {
  margin: 8px 0 8px 18px;
  padding-left: 0;
}

.policy ul li {
  margin: 4px 0;
}

/* ================================
   POLICY TABLE
================================ */

.policy-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  overflow: hidden;
}

/* Ячейки */
.policy-table th,
.policy-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

/* Последний столбец */
.policy-table th:last-child,
.policy-table td:last-child {
  border-right: none;
}

/* Последняя строка */
.policy-table tr:last-child th,
.policy-table tr:last-child td {
  border-bottom: none;
}

/* Заголовки слева */
.policy-table th {
  width: 32%;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}

/* Тело */
.policy-table td {
  background: rgba(255, 255, 255, 0.02);
}


/* ================================
   OPERATOR INFO BLOCK
================================ */

.policy__org {
  margin-top: 60px;
  padding: 32px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.policy__org h3 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
}

.policy__org p {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.policy__org p:last-child {
  margin-bottom: 0;
}

.policy__org strong {
  font-weight: 600;
  color: #ffffff;
}

/* Email */
.policy__org a,
.policy__org p a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy__org a:hover {
  opacity: 0.85;
}
	.policy__section a {
    color: #8ee7ff;
    text-decoration: none;
	transition:0.3s;
}
	
.policy__section a:hover {
    text-decoration: underline;
}

/* адаптив */

@media (max-width: 768px) {
  .policy {
    margin: 24px auto 48px;
    padding: 24px 16px 32px;
    border-radius: 20px;
  }

  .policy__title {
    font-size: 20px;
  }

  .policy__section {
    margin-top: 20px;
    padding-top: 12px;
  }
	
  .policy-table,
  .policy-table tbody,
  .policy-table tr,
  .policy-table th,
  .policy-table td {
    display: block;
    width: 100%;
  }

  .policy-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }

  .policy-table tr:last-child {
    border-bottom: none;
  }

  .policy-table th {
    background: rgba(255, 255, 255, 0.08);
    font-size: 14px;
    padding-bottom: 8px;
    border-right: none;
  }

  .policy-table td {
    padding-top: 8px;
    border-right: none;
  }

	  .policy__org {
    padding: 20px;
    margin-top: 40px;
  }

  .policy__org h3 {
    font-size: 18px;
  }

  .policy__org p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .policy {
    padding: 20px 14px 28px;
    font-size: 15px;
  }

  .policy__org {
    padding: 12px 14px;
  }
}