.privacy-page {
  max-width: 900px;
  margin: 50px auto;
  padding: 40px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  line-height: 1.8;
}

.privacy-page h1 {
  color: #26b3b4;
  margin-bottom: 10px;
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.privacy-page h2 {
  color: #2c3e50;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.privacy-page p {
  color: #555;
  margin-bottom: 15px;
  font-size: 1rem;
}

.privacy-page ul {
  margin-left: 25px;
  margin-bottom: 15px;
  color: #555;
}

.privacy-page li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.privacy-page strong {
  color: #2c3e50;
  font-weight: 600;
}

.contact-box {
  background: #f8f9fa;
  padding: 20px;
  border-left: 4px solid #26b3b4;
  border-radius: 5px;
  margin: 25px 0;
  line-height: 1.8;
}

.contact-box strong {
  color: #2c3e50;
  display: block;
  margin-bottom: 10px;
}

.contact-box a {
  color: #26b3b4;
  text-decoration: underline;
  font-weight: 500;
}

.contact-box a:hover {
  color: #1e8c8d;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #26b3b4;
  text-decoration: none;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.back-link:hover {
  color: #1e8c8d;
  transform: translateX(-5px);
}

.back-link i {
  font-size: 1rem;
}

.footer-note {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  color: #666;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .privacy-page {
    margin: 30px 20px;
    padding: 25px 20px;
  }

  .privacy-page h1 {
    font-size: 1.6rem;
  }

  .privacy-page h2 {
    font-size: 1.2rem;
  }

  .privacy-page p,
  .privacy-page li {
    font-size: 0.95rem;
  }

  .contact-box {
    padding: 18px;
    font-size: 0.9rem;
  }

  .back-link {
    font-size: 0.9rem;
  }

  .footer-bottom p {
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .privacy-page {
    margin: 20px 15px;
    padding: 20px 15px;
  }

  .privacy-page h1 {
    font-size: 1.4rem;
  }

  .privacy-page h2 {
    font-size: 1.1rem;
    margin-top: 25px;
  }

  .privacy-page ul {
    margin-left: 20px;
  }
}

.privacy-page h2:first-of-type + p a,
.privacy-page p a[href^="mailto:"] {
  color: #26b3b4;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}

.privacy-page p a[href^="mailto:"]:hover {
  color: #1e8c8d;
  text-decoration: underline;
}
