/* ==================== PRIVACY POLICY PAGE ==================== */

/* Privacy Policy Section */
.privacy-policy-section {
  background: white;
  padding: 80px 0;
}

.privacy-policy-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

/* Gutenberg Blocks Styling */
.privacy-policy-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 10px;
}

.privacy-policy-content h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #333;
  margin-top: 30px;
  margin-bottom: 15px;
}

.privacy-policy-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #555;
  margin-top: 20px;
  margin-bottom: 10px;
}

.privacy-policy-content p {
  margin-bottom: 16px;
  text-align: justify;
}

.privacy-policy-content ul,
.privacy-policy-content ol {
  margin: 20px 0 20px 30px;
}

.privacy-policy-content li {
  margin-bottom: 10px;
}

.privacy-policy-content a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.privacy-policy-content a:hover {
  color: #45a049;
}

.privacy-policy-content blockquote {
  border-left: 4px solid var(--primary-color);
  padding-left: 20px;
  margin: 20px 0;
  font-style: italic;
  color: #666;
}

.privacy-policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.privacy-policy-content table th,
.privacy-policy-content table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

.privacy-policy-content table th {
  background: #f5f5f5;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-policy-section {
    padding: 60px 0;
  }

  .privacy-policy-content {
    padding: 0 20px;
  }

  .privacy-policy-content h2 {
    font-size: 1.5rem;
  }

  .privacy-policy-content h3 {
    font-size: 1.2rem;
  }

  .privacy-policy-content h4 {
    font-size: 1rem;
  }

  .privacy-policy-content p {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .privacy-policy-section {
    padding: 40px 0;
  }

  .privacy-policy-content {
    padding: 0 15px;
    font-size: 0.95rem;
  }

  .privacy-policy-content h2 {
    font-size: 1.3rem;
  }

  .privacy-policy-content table {
    font-size: 0.85rem;
  }

  .privacy-policy-content table th,
  .privacy-policy-content table td {
    padding: 8px;
  }
}
