/* ===== WRAPPER ===== */
.privacy-wrapper {
  background: #f4f6f8;
  padding-bottom: clamp(40px, 6vw, 80px);
}

/* ===== HERO SECTION ===== */
.privacy-hero {
  height: clamp(160px, 22vw, 260px);
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1200");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Dark overlay for readability */
.privacy-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Centered content */
.privacy-hero-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 16px;
}

/* Main title */
.privacy-hero-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

/* Subtitle */
.privacy-hero-subtitle {
  font-size: clamp(14px, 1.6vw, 18px);
  color: #e5e7eb;
  letter-spacing: 0.5px;
}

/* ===== CONTENT AREA ===== */
.privacy-content {
  max-width: clamp(900px, 85vw, 1200px);
  margin: clamp(-60px, -8vw, -120px) auto 0;
  padding: 0 clamp(16px, 4vw, 32px);
  position: relative;  /* ADD THIS */
  z-index: 1;  
}

/* ===== CARD ===== */
.policy-card {
  background: #ffffff;
  border-radius: clamp(10px, 1.8vw, 16px);
  padding: clamp(24px, 4vw, 40px);
  margin-bottom: clamp(24px, 4vw, 40px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

/* ===== TITLE ===== */
.policy-title {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  color: #000;
  margin-bottom: clamp(6px, 1vw, 10px);
}

/* ===== UNDERLINE ===== */
.policy-title-underline {
  width: clamp(120px, 18vw, 200px);
  height: 4px;
  background: linear-gradient(
    to right,
    #1f3342 0%,
    #1f3342 50%,
    #3a5fb0 50%,
    #3a5fb0 100%
  );
  margin-bottom: clamp(18px, 3vw, 26px);
}

/* ===== TEXT ===== */
.policy-text {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
  color: #333;
}
