/* Privacy Policy Page Styles */

.privacy-container {
  max-width: 900px;
  margin: 120px auto 60px;
  padding: 0 20px;
  min-height: calc(100vh - 200px);
}

.privacy-content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.privacy-content h1 {
  color: #1a3a52;
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-align: center;
}

.last-updated {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 40px;
  font-style: italic;
}

.privacy-section {
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e9ecef;
}

.privacy-section:last-of-type {
  border-bottom: none;
}

.privacy-section h2 {
  color: #1a3a52;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.privacy-section p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 1rem;
}

.privacy-section ul {
  margin: 15px 0;
  padding-left: 25px;
}

.privacy-section ul li {
  color: #333;
  line-height: 1.8;
  margin-bottom: 10px;
  list-style-type: disc;
}

.privacy-section strong {
  color: #1a3a52;
  font-weight: 600;
}

.privacy-section a {
  color: #ff6b35;
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-section a:hover {
  color: #e55a2b;
  text-decoration: underline;
}

.back-link {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid #e9ecef;
}

.back-link .contact-btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-container {
    margin-top: 100px;
    padding: 0 15px;
  }

  .privacy-content {
    padding: 25px 20px;
  }

  .privacy-content h1 {
    font-size: 1.8rem;
  }

  .privacy-section h2 {
    font-size: 1.3rem;
  }

  .privacy-section p,
  .privacy-section ul li {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .privacy-content h1 {
    font-size: 1.5rem;
  }

  .privacy-section h2 {
    font-size: 1.2rem;
  }

  .privacy-section ul {
    padding-left: 20px;
  }
}
