/* Policy Page Styles */
.page-header {
  position: relative;
  height: 300px;
  background: url('https://images.pexels.com/photos/1579253/pexels-photo-1579253.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 80px;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
}

.policy-content {
  max-width: 900px;
  margin: 64px auto;
  padding: 0 24px;
}

.policy-section {
  margin-bottom: 48px;
}

.policy-section h2 {
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: #333;
}

.policy-section p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: #555;
}

.policy-section ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.policy-section ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  line-height: 1.8;
  color: #555;
}

/* Media Queries */
@media screen and (max-width: 767px) {
  .page-header {
    height: 200px;
  }
  
  .page-header-content h1 {
    font-size: 2rem;
  }
  
  .policy-content {
    margin: 40px auto;
  }
  
  .policy-section h2 {
    font-size: 1.5rem;
  }
}