 /* ===== HERO SECTION ===== */
.policies-hero {
  position: relative;
  background: url('uploads/market/What\ To\ Know\ Before\ You\ Buy\ Products\ From\ A\ TikTok\ Shop.jpeg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 8rem 6%;
}
.policies-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 9, 27, 0.92);
}
.policies-hero .container {
  position: relative;
  z-index: 2;
}
.policies-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
}
.policies-hero p {
  margin-top: 1.2rem;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #e2e8f0;
  max-width: 750px;
  margin-inline: auto;
}

/* ===== POLICY CONTENT ===== */
.policies-section {
  padding: 6rem 8%;
  background: #fff;
}
.policy-category {
  margin-bottom: 4rem;
}
.tag-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.tag-line .line {
  width: 50px;
  height: 3px;
  background: var(--color-green);
}
.tag-line .text {
  color: #0f172a;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}
.policy-category h2 {
  font-size: 2rem;
  color: #1e293b;
  margin: 0.8rem 0 1.5rem;
}
.policy-item {
  border-bottom: 1px solid #e2e8f0;
}
.accordion {
  width: 100%;
  text-align: left;
  background: #f9fafb;
  border: none;
  outline: none;
  font-weight: 600;
  color: #1e293b;
  padding: 1.2rem;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.accordion:hover,
.accordion.active {
  background: var(--color-green);
  color: #fff;
}
.panel {
  background: #f8fafc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.panel p {
  padding: 1.2rem;
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
}
.panel .last-updated {
  font-size: 0.9rem;
  color: #64748b;
  font-style: italic;
}

/* ===== CONTACT SECTION ===== */
.contact-policy {
  background: linear-gradient(135deg, #f9fafb, #f1f5f9);
  padding: 5rem 6%;
  text-align: center;
}
.contact-policy .contact-box {
  max-width: 700px;
  margin: auto;
}
.contact-policy h2 {
  font-size: 2.2rem;
  color: #1e293b;
  margin-bottom: 1rem;
}
.contact-policy p {
  color: #475569;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}
.call-btn, .whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.call-btn {
  background: #1e293b;
  color: #fff;
}
.whatsapp-btn {
  background: #25D366;
  color: #fff;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 0 20px 10px rgba(37, 211, 102, 0.1); }
}