/* Policy Page Styles */
.policy-section {
  padding-top: 120px;
  padding-bottom: 80px;
  background-color: var(--bg-light);
  position: relative;
}

.policy-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../src/assets/bann.jpg');
  opacity: 0.05;
}

.policy-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.policy-header h1 {
  font-size: 2.8rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.policy-header h1 span {
  color: var(--primary-color);
}

.policy-header p {
  color: #777;
  font-size: 1rem;
}

.policy-content {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  position: relative;
}

.policy-block {
  margin-bottom: 40px;
}

.policy-block:last-child {
  margin-bottom: 0;
}

.policy-block h2 {
  font-size: 1.6rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.policy-block h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 10px;
}

.policy-block p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #555;
}

.policy-block ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.policy-block ul li {
  margin-bottom: 8px;
  color: #555;
  line-height: 1.7;
}

.policy-block strong {
  color: var(--secondary-color);
  font-weight: 600;
}

@media (max-width: 768px) {
  .policy-header h1 {
    font-size: 2.2rem;
  }
  
  .policy-content {
    padding: 25px;
  }
  
  .policy-block h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  .policy-header h1 {
    font-size: 1.8rem;
  }
  
  .policy-content {
    padding: 20px;
  }
  
  .policy-block h2 {
    font-size: 1.2rem;
  }
}