/* =========================
   PRIVACY POLICY STYLES
========================= */
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: #ffffff;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-back:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
  color: #ffffff;
}

.privacy-content {
  padding: 40px 0 40px;
  background: linear-gradient(135deg, #fff5f5 0%, #fffbeb 50%, #eff6ff 100%);
}

.privacy-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 2px solid #e2e8f0;
}

.privacy-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.privacy-subtitle {
  font-size: 20px;
  color: #4a5568;
  font-weight: 600;
  margin-bottom: 8px;
}

.privacy-company {
  font-size: 16px;
  color: #718096;
  font-weight: 500;
}

.privacy-section {
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  margin-bottom: 25px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.privacy-section:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.privacy-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #dc2626;
  display: inline-block;
}

.privacy-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  margin-top: 25px;
  margin-bottom: 15px;
}

.privacy-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: #dc2626;
  margin-bottom: 12px;
}

.privacy-section p {
  font-size: 15px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 15px;
  text-align: justify;
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

.privacy-section ul {
  margin-left: 25px;
  margin-bottom: 15px;
}

.privacy-section ul li {
  font-size: 15px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 12px;
  text-align: justify;
}

.privacy-section ul li:last-child {
  margin-bottom: 0;
}

.privacy-section strong {
  color: #2d3748;
  font-weight: 600;
}

/* Data Categories Grid */
.data-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.data-category {
  background: #fafafa;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.data-category:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.data-category h4 {
  font-size: 15px;
  font-weight: 600;
  color: #dc2626;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #dc2626;
}

.data-category ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.data-category ul li {
  font-size: 14px;
  color: #4a5568;
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  margin-bottom: 0;
  text-align: left;
}

.data-category ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: #dc2626;
  border-radius: 50%;
}

/* Footer Section */
.privacy-footer {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #e2e8f0;
}

.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 35px;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: #ffffff;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

.btn-back-home:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-content {
    padding: 40px 0 60px;
  }

  .privacy-header h1 {
    font-size: 28px;
  }

  .privacy-subtitle {
    font-size: 18px;
  }

  .privacy-company {
    font-size: 15px;
  }

  .privacy-section {
    padding: 25px;
  }

  .privacy-section h2 {
    font-size: 20px;
  }

  .privacy-section h3 {
    font-size: 17px;
  }

  .privacy-section h4 {
    font-size: 15px;
  }

  .privacy-section p,
  .privacy-section ul li {
    font-size: 14px;
  }

  .data-categories {
    grid-template-columns: 1fr;
  }

  .btn-back {
    font-size: 13px;
    padding: 8px 20px;
  }
}

@media (max-width: 480px) {
  .privacy-header h1 {
    font-size: 24px;
  }

  .privacy-subtitle {
    font-size: 16px;
  }

  .privacy-section {
    padding: 20px;
  }

  .privacy-section h2 {
    font-size: 18px;
  }
}