body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f4f6f9;
}

/* Hero Section */
.policy-hero {
    background: linear-gradient(135deg, #F34B1C, #1C3C78);
  color: white;
  text-align: center;
  padding: 20px 20px;
}

.policy-hero h1 {
  margin: 0;
  font-size: 36px;
}

.policy-hero p {
  margin-top: 10px;
  opacity: 0.9;
}

/* Main Container */
.policy-container {
  max-width: 900px;
  margin: -40px auto 60px;
  padding: 20px;
}

/* Individual Cards */
.policy-card {
  background: white;
  padding: 25px 30px;
  margin-bottom: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border-left: 5px solid #ff5722;
  transition: 0.3s ease;
}

.policy-card h2 {
  margin-top: 0;
  color: #111827;
}

.policy-card p {
  color: #4b5563;
  line-height: 1.7;
  font-size: 15px;
}

.policy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Button */
.back-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  border: 1px dashed white;
  background: linear-gradient(to right, #FF3B1F, #FF6A3D);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
  font-weight: 600;
}

.back-btn:hover {
 background: linear-gradient(135deg, #0f2a5f, #1b3f8b);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .policy-hero h1 {
    font-size: 26px;
  }
}


@media (max-width: 768px) {

 

  .policy-card p {
    font-size: 10px; /* 50px bahut zyada ho jayega */
  }

}