/*--------------------------------------------------------------
# Page Title Section
--------------------------------------------------------------*/
#page-title {
  width: 100%;
  height: 40vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../images/banner-image.png") center center;
  background-size: cover;
  position: relative;
  padding: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  margin-top: 80px;
}

#page-title h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

#page-title p {
  color: #fff;
  margin: 15px 0 0 0;
  font-size: 20px;
  text-align: center;
}

/*--------------------------------------------------------------
# Privacy Policy Section
--------------------------------------------------------------*/
#privacy {
  padding: 80px 0;
}

.privacy-content {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  padding: 40px;
}

.privacy-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.privacy-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #FF6F00;
  margin-top: 30px;
  margin-bottom: 15px;
}

.privacy-content p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.8;
}

.privacy-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.privacy-content ul li {
  color: #666;
  margin-bottom: 10px;
  line-height: 1.6;
}

.contact-info {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 5px;
  margin-top: 15px;
}

.contact-info p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact CTA Section
--------------------------------------------------------------*/
#contact-cta {
  padding: 60px 0;
  text-align: center;
  background: #f8f9fa;
}

#contact-cta h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

#contact-cta p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #666;
}

#contact-cta .btn-primary {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #FF6F00;
  text-decoration: none;
}

#contact-cta .btn-primary:hover {
  background: #0056b3;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 991px) {
  #page-title {
      height: 30vh;
      margin-top: 60px;
  }

  #page-title h1 {
      font-size: 32px;
  }

  #page-title p {
      font-size: 18px;
  }

  .privacy-content {
      padding: 30px;
  }

  .privacy-content h3 {
      font-size: 24px;
  }

  .privacy-content h4 {
      font-size: 18px;
  }
}

@media (max-width: 768px) {
  #page-title {
      height: 25vh;
  }

  #page-title h1 {
      font-size: 28px;
  }

  #page-title p {
      font-size: 16px;
  }

  .privacy-content {
      padding: 25px;
  }

  #contact-cta h2 {
      font-size: 28px;
  }

  #contact-cta p {
      font-size: 16px;
  }
}

@media (max-width: 575px) {
  #page-title {
      height: 20vh;
  }

  #page-title h1 {
      font-size: 24px;
  }

  #page-title p {
      font-size: 14px;
  }

  .privacy-content {
      padding: 20px;
  }

  .privacy-content h3 {
      font-size: 22px;
  }

  .privacy-content h4 {
      font-size: 16px;
  }

  #contact-cta .btn-primary {
      font-size: 14px;
      padding: 10px 20px;
  }
}
