.policy-hero {
  padding: 86px 0 72px;
  color: #fff7ed;
  background:
    linear-gradient(
      90deg,
      rgba(22, 10, 6, 0.94) 0%,
      rgba(47, 20, 12, 0.86) 46%,
      rgba(80, 34, 20, 0.50) 100%
    ),
    url("../images/banners/home-hero-banner.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.policy-eyebrow {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 196, 144, 0.12);
  border: 1px solid rgba(255, 196, 144, 0.30);
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.policy-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  margin-bottom: 12px;
}

.policy-hero p {
  color: #f3d4c0;
  font-size: 17px;
  font-weight: 600;
}

.policy-section {
  padding: 64px 0 78px;
}

.policy-card {
  max-width: 980px;
  background: #fffdf9;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.policy-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  background-image: url("../images/logo/vikaas_logo_symbol_transparent.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.035;
  pointer-events: none;
}

.policy-intro,
.policy-block,
.policy-contact {
  position: relative;
  z-index: 1;
}

.policy-intro {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 26px;
}

.policy-intro h2,
.policy-block h3,
.policy-contact h3 {
  font-family: "Playfair Display", serif;
  color: var(--text);
}

.policy-intro h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 12px;
}

.policy-intro p,
.policy-block p,
.policy-contact p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.policy-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.policy-block h3,
.policy-contact h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.policy-block ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14px;
  list-style: none;
  margin-top: 16px;
}

.policy-block li {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--text);
  font-weight: 700;
}

.policy-block li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 900;
  margin-right: 8px;
}

.policy-contact {
  padding-top: 28px;
}

.contact-box {
  margin-top: 16px;
  background: #fff4e8;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  display: grid;
  gap: 6px;
}

.contact-box strong {
  color: var(--primary);
  font-size: 18px;
}

.contact-box span {
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 760px) {
  .policy-hero {
    padding: 58px 0 48px;
    background-position: 68% center;
  }

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

  .policy-block ul {
    grid-template-columns: 1fr;
  }

  .policy-block h3,
  .policy-contact h3 {
    font-size: 24px;
  }
}

.policy-note {
  margin-top: 18px;
  font-weight: 800;
  color: var(--text) !important;
}