/* Privacy Section */
.privacy-section {
  font-family: "Figtree", sans-serif;
  background: #fff;
}

/* Hero Image */
.privacy-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.privacy-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.privacy-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-overlay h1 {
  color: #fff;
  font-size: 48px;
  letter-spacing: 1px;
}

/* Content Area */
.privacy-content {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 8%;
}

.privacy-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.privacy-content h2 {
  margin-top: 30px;
  font-size: 20px;
  color: #222;
}

/* Mobile */
@media (max-width: 768px) {
  .privacy-hero {
    height: 40vh;
  }

  .privacy-overlay h1 {
    font-size: 30px;
  }

  .privacy-content {
    margin: 40px auto;
  }
}
