/* ===============================
   GLOBAL LAYOUT
=================================*/
.privacy-policy-container {
  min-height: 100vh;
  background: #f4f6fb;
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #2d3748;
}

/* ===============================
   HEADER
=================================*/
.privacy-header {
  background: linear-gradient(135deg, #6f42c1, #8834a7);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.privacy-title {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.privacy-subtitle {
  font-size: 1rem;
  opacity: 0.9;
}

/* ===============================
   CONTENT
=================================*/
.privacy-content {
  padding: 70px 0;
  background: #ffffff;
}

.privacy-section {
  margin-bottom: 60px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #6f42c1;
  margin-bottom: 20px;
  position: relative;
  padding-left: 15px;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 5px;
  height: 80%;
  background: #ffc107;
  border-radius: 4px;
}

.section-text {
  font-size: 1.05rem;
  line-height: 1.8;
  background: #f9fafc;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

/* ===============================
   INFO CARDS
=================================*/
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.info-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
}

.card-icon {
  width: 55px;
  height: 55px;
  background: #6f42c1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.card-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.6;
}

.card-content ul {
  padding-left: 20px;
  margin: 0;
}

.card-content li {
  margin-bottom: 8px;
}

/* ===============================
   CONTACT SECTION
=================================*/
.contact-info {
  background: #f9fafc;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: #6f42c1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* ===============================
   FOOTER
=================================*/
.privacy-footer {
  background: #1f2937;
  color: #ffffff;
  padding: 50px 0;
  margin-top: 60px;
}

.footer-text {
  opacity: 0.8;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-link {
  padding: 10px 18px;
  border-radius: 6px;
  background: #374151;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-link:hover {
  background: #6f42c1;
}

/* ===============================
   RESPONSIVE
=================================*/
@media (max-width: 768px) {
  .privacy-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .section-text {
    padding: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}
