/* ===== POLICY HEADER ===== */
.policy-header {
  position: relative;
  overflow: hidden;
}

.policy-header-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #2a0105 0%, #6e0109 30%, #9B020D 55%, #C4122F 100%);
}

.policy-header-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 56px, rgba(255, 255, 255, 0.025) 56px, rgba(255, 255, 255, 0.025) 57px),
    repeating-linear-gradient(90deg, transparent, transparent 56px, rgba(255, 255, 255, 0.025) 56px, rgba(255, 255, 255, 0.025) 57px);
}

.policy-header-bg::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1.5px solid rgba(199, 163, 82, 0.08);
  border-radius: 50%;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  box-shadow: 0 0 60px rgba(199, 163, 82, 0.03);
}

.policy-header-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 32px;
  padding-bottom: 40px;
  color: #fff;
}

.policy-header-content .logo-svg {
  height: 30px;
  margin-bottom: 24px;
}

.policy-header-content h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  margin-bottom: 8px;
}

.policy-header-content p {
  font-size: 0.88rem;
  opacity: 0.7;
}

/* ===== POLICY PAGE ===== */
.policy-page {
  padding: 32px 0 48px;
}

.policy-card {
  background: #fff;
  border: 1px solid rgba(60, 60, 59, 0.1);
  border-radius: 8px;
  padding: 32px 28px;
}

.policy-section {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(60, 60, 59, 0.08);
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-section h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: #000;
  margin-bottom: 12px;
}

.policy-section h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #3C3C3B;
  margin: 16px 0 8px;
}

.policy-section p {
  margin-bottom: 12px;
  line-height: 1.7;
  font-size: 0.95rem;
}

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

.policy-section ul {
  margin: 8px 0 12px 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  list-style: disc;
}

.policy-section li {
  margin-bottom: 4px;
}

.policy-section strong {
  color: #000;
}

.policy-consents {
  background: rgba(60, 60, 59, 0.03);
  border-radius: 6px;
  padding: 16px 20px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.policy-consents p {
  margin-bottom: 8px;
}

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

@media (max-width: 767px) {
  .policy-header-content {
    padding-top: 24px;
    padding-bottom: 32px;
  }

  .policy-header-content h1 {
    font-size: 1.4rem;
  }

  .policy-page {
    padding: 24px 0 40px;
  }

  .policy-card {
    padding: 24px 20px;
  }

  .policy-section h2 {
    font-size: 1.05rem;
  }

  .policy-section p,
  .policy-section ul {
    font-size: 0.9rem;
  }
}

@media (max-width: 379px) {
  .policy-card {
    padding: 20px 16px;
  }
}