/* Privacy Policy Section */
.privacy-section {
  background: var(--section-background-2);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.privacy-container {
  background: var(--section-background-1);
  padding: 40px 50px;
  text-align: justify;
  border-radius: 12px;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.privacy-container h2 {
  font-size: 32px;
  margin-bottom: 25px;
  font-weight: 700;
}

.privacy-container h3{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.privacy-container p {
  text-align: justify;
  flex-direction: column;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.privacy-container a {
  color: var(--tertiary-text-color);
  text-decoration: none;
  font-weight: 500;
}

.privacy-container a:hover {
  text-decoration: underline;
}