.policy-banner {
  position: relative;
  width: 100%;
  height: clamp(260px, 50vw, 440px); /* scales with screen size */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Dynamic Image */
.policy-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  
}

/* Dark Overlay */
.policy-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 14, 34, 0.60);
  backdrop-filter: blur(3px);
  z-index: 1;
}

/* Content */
.policy-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 10px;
  max-width: 900px;
}

/* Main Title */
.policy-title {
  font-size: clamp(26px, 4.2vw, 52px); /* Auto responsive font */
  font-weight: 600;
  color: #E34D28;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Subtitle */
.policy-subtext {
  font-size: clamp(14px, 1.7vw, 22px);
  line-height: 1.6;
  color: #ffffff;
}

.privacy-sec-content{
    width: 80%;
    margin: 0 auto;
}
.policy-protect h1{
  padding-top: 30px;
  text-align: center;
  align-items: center;
}
.policy-protect h3{
  text-align: center;  
}




/* Extra Fine-Tuning for Small Phones */
@media (max-width: 480px) {
  .policy-banner-content {
    padding: 0 16px;
  }
  .policy-subtext br {
    display: none; /* Avoid awkward line breaks on very small screens */
  }
}
