
/* privacy-statement css */

.privacy-statement {
  margin: 40px;
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 50px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  line-height: 1.8;
  color: #333;
  position: relative;
}


.privacy-statement h2
{
  text-align: center;
  color: #162d42;
  margin-bottom: 40px;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}


/* Add subtle left border to make it professional */
.privacy-statement::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 20px;
  height: calc(100% - 80px);
  width: 5px;
  background: linear-gradient(180deg, #162d42, darkred);
  border-radius: 10px;
}

/* Paragraph styling */
.privacy-statement p {
  font-size: 1.05rem;
  margin: 0;
  padding-left: 30px;
  text-align: justify;
}



/* Responsive */
@media (max-width: 768px) {
  .privacy-statement {
    padding: 30px 25px;
    margin: 60px 15px;
  }

  .privacy-statement::before {
    left: 10px;
    top: 30px;
    height: calc(100% - 60px);
  }

  .privacy-statement p {
    font-size: 1rem;
    padding-left: 25px;
  }
}

