/* *********************************** Privacy Banner CSS *********************************** */
/* PRIVACY POLICY PAGE HEADER */
.privacy-header {
  background-color: #211932; /* Change to your brand color */
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
}

/* Heading */
.privacy-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

/* Decorative underline */
.privacy-header h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffffff;
  margin: 20px auto 0;
  border-radius: 2px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .privacy-header {
    padding: 50px 15px;
  }

  .privacy-header h1 {
    font-size: 2rem;
  }
}
/* *********************************** Privacy Banner CSS End *********************************** */


/* *********************************** Privacy Contect CSS *********************************** */

/* Container */
.privacy-policy {
  background-color: #f9f9f9; /* Soft background */
  padding: 80px 20px;
  font-family: 'Rubik', Arial, sans-serif;
  color: #333;
  text-align: justify;
}

.privacy-policy .container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 5%;
}

/* Page Title */
.privacy-policy .page-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0e2b5c;
  margin-bottom: 50px;
  position: relative;
}

.privacy-policy .page-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #00cce5;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Headings */
.privacy-policy h3 {
  font-size: 1.875rem;
  color: #0e2b5c;
  margin-top: 40px;
  margin-bottom: 15px;
}

/* Paragraphs */
.privacy-policy p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Lists */
.privacy-policy ol,
.privacy-policy ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.privacy-policy li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Links */
.privacy-policy a {
  color: #00cce5;
  text-decoration: none;
  transition: all 0.3s;
}

.privacy-policy a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-policy {
    padding: 50px 15px;
  }

  .privacy-policy .page-title {
    font-size: 2rem;
  }

  .privacy-policy h3 {
    font-size: 1.5rem;
  }
}

/* *********************************** Privacy Contect CSS End *********************************** */
