* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/*
.policy-container {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: radial-gradient(circle at 10% 20%, rgba(216, 231, 254, 0.4), rgba(199, 210, 254, 0.2));
  padding: 3rem 1.5rem;
  min-height: 100vh;
}
*/
.policy-card {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(2px);
  border-radius: 48px;
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

h1 {
  font-size: 2.6rem;
  font-weight: 800;
  background: #1F2A44;
  /*background: linear-gradient(135deg, #0b2b44, #1c5a8a, #2c7cb6);*/
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}

.last-updated {
  color: #5b6e8c;
  font-size: 0.85rem;
  border-bottom: 2px solid #e2edf7;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.policy-section {
  background: #ffffff;
  border-radius: 24px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
  border: 1px solid #f0f4f9;
}

.policy-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.15);
  border-color: #d9e6f5;
}

.policy-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1F2A44, #2c6e9e);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 0.75rem;
  border-left: 5px solid;
  border-image: linear-gradient(180deg, #3b82f6, #a855f7);
  border-image-slice: 1;
  padding-left: 1rem;
}

.policy-section p,
.policy-section li {
  color: #1f2a3e;
  line-height: 1.6;
  font-size: 1rem;
}

.policy-section ul {
  margin: 0.75rem 0 0 1.6rem;
}

.policy-section li {
  margin: 0.6rem 0;
}

.highlight {
  background: linear-gradient(120deg, #fef9c3 0%, #fef9c3 40%, transparent 80%);
  padding: 0.1rem 0.4rem;
  border-radius: 12px;
  font-weight: 600;
  color: #854d0e;
}

.highlight-banner {
  background: #fffbeb;
  border-left: 5px solid #f59e0b;
  padding: 1rem 1.2rem;
  border-radius: 20px;
  margin: 1rem 0;
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  color: #92400e;
}

.policy-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #bfdbfe;
  transition: all 0.2s;
}

.policy-link:hover {
  color: #1e40af;
  border-bottom-color: #3b82f6;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
  background: #f9fbfd;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.data-table th,
.data-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e4edf5;
}

.data-table th {
  background: linear-gradient(135deg, #1e3c72, #2b4c7c);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:hover {
  background: #f1f9fe;
}

.consent-bar {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px dashed #cbdde9;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  background: #fafdff;
  border-radius: 40px;
  padding: 1.2rem 1.8rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1e2f44;
}

.checkbox-label input {
  width: 1.2rem;
  height: 1.2rem;
  cursor: pointer;
  accent-color: #1e3c72;
}

.btn-agree {
  background: linear-gradient(135deg, #1e3c72, #2a5a8c);
  color: white;
  border: none;
  padding: 0.8rem 2.2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 6px 14px rgba(30, 60, 114, 0.25);
  letter-spacing: 0.3px;
}

.btn-agree:hover:not(:disabled) {
  background: linear-gradient(135deg, #14345e, #1f4e74);
  transform: scale(1.02);
  box-shadow: 0 8px 18px rgba(30, 60, 114, 0.3);
}

.btn-agree:active:not(:disabled) {
  transform: scale(0.98);
}

.btn-agree:disabled {
  background: #9bb1c4;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.consent-note {
  font-size: 0.8rem;
  color: #5c6f87;
  background: #eef3fc;
  padding: 0.3rem 1rem;
  border-radius: 60px;
}

.safety-badge {
  display: inline-block;
  background: #dcfce7;
  color: #166534;
  padding: 0.3rem 1rem;
  border-radius: 60px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 0.6rem;
}

.emergency-box {
  background: #fef2f2;
  border-left: 6px solid #dc2626;
  padding: 1rem 1.4rem;
  border-radius: 24px;
  margin: 1.2rem 0;
  box-shadow: 0 2px 10px rgba(220, 38, 38, 0.1);
}

.toggle-btn {
  background: #eef2ff;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 60px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
  color: #1e3c72;
}

.toggle-btn:hover {
  background: #e0e7ff;
  transform: translateY(-1px);
}

.hidden-content {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 20px;
  border-left: 3px solid #3b82f6;
}

.hidden-content.show {
  display: block;
  animation: fadeSlide 0.25s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #e2e8f0;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #1F2A44;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #1F2A44;
}

@media (max-width: 640px) {
  .policy-container {
    padding: 1.5rem 1rem;
  }
  .policy-card {
    padding: 1.5rem;
    border-radius: 32px;
  }
  h1 {
    font-size: 1.9rem;
  }
  .policy-section {
    padding: 1rem;
  }
  .policy-section h2 {
    font-size: 1.2rem;
  }
  .consent-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
  }
  .btn-agree {
    text-align: center;
  }
  .data-table {
    font-size: 0.8rem;
  }
  .data-table th,
  .data-table td {
    padding: 0.6rem;
  }
}