.privacy-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.privacy-summary {
  background: linear-gradient(135deg, #004f4d, #188f8b);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.summary-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.summary-item i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #90be6d;
}

.privacy-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 79, 77, 0.1);
}

.privacy-section h2 {
  color: #004f4d;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  border-bottom: 2px solid #90be6d;
  padding-bottom: 0.5rem;
}

.info-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #004f4d;
}

.data-type,
.basis-item {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.data-type h3,
.basis-item h3 {
  color: #004f4d;
  margin-bottom: 0.5rem;
}

.legal-basis,
.rights-grid,
.security-measures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.right-item,
.security-item {
  text-align: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.right-item:hover,
.security-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 79, 77, 0.1);
}

.right-item i,
.security-item i {
  font-size: 2rem;
  color: #004f4d;
  margin-bottom: 0.5rem;
}

.retention-table {
  overflow-x: auto;
}

.retention-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.retention-table th,
.retention-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.retention-table th {
  background: #004f4d;
  color: white;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.contact-method i {
  font-size: 1.5rem;
  color: #004f4d;
}

.authority-contact {
  background: #fff3cd;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #ffc107;
  margin-top: 1rem;
}

.authority-contact h3 {
  color: #856404;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .privacy-content {
    padding: 1rem;
  }

  .privacy-section {
    padding: 1.5rem;
  }

  .summary-grid,
  .legal-basis,
  .rights-grid,
  .security-measures,
  .contact-methods {
    grid-template-columns: 1fr;
  }
}
