
.privacy-policy-box-container {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-policy-box {
  height: auto;
  width: 25%;
  background-color: #f8f9fa;
  border: 1px solid #e8e8e8;
  border-radius: 15px;
  padding: 30px;
  margin: 0 10px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-in-out;
}

.privacy-policy-box p {
  font-size: 2em;
  color: #4f4f4f;
  text-align: right;
  direction: rtl;
}

@media (max-width: 600px) {
  .privacy-policy-box {
    width: 90%;
    padding: 20px;
    margin: 0;
  }

  .privacy-policy-box p {
    font-size: 1.5em;
  }
}
