body {
  background-color: #131d4f;
}
.privacy-container {
  max-width: 800px;
  margin: 6rem auto 2rem auto;
  padding: 2rem;
  background: rgba(45, 49, 66, 0.4);
  border-radius: 12px;
  border: 1px solid rgba(78, 205, 196, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.privacy-hero {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  background: linear-gradient(
    135deg,
    rgba(78, 205, 196, 0.1),
    rgba(255, 107, 107, 0.1)
  );
  border-radius: 8px;
  border: 1px dashed #4ecdc4;
}

.privacy-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #4ecdc4;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.privacy-hero .subtitle {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: #fffdd0;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.policy-meta {
  background: rgba(35, 41, 70, 0.6);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(78, 205, 196, 0.3);
  margin-bottom: 2rem;
}

.policy-meta h3 {
  color: #4ecdc4;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.meta-item {
  background: rgba(78, 205, 196, 0.1);
  padding: 1rem;
  border-radius: 6px;
  border-left: 3px solid #4ecdc4;
}

.meta-label {
  color: #4ecdc4;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.meta-value {
  color: #fffdd0;
  font-size: 1rem;
}

.meta-value a {
  color: #4ecdc4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.meta-value a:hover {
  color: #5fd3d3;
  text-decoration: underline;
}

.privacy-section {
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
}

.privacy-section h2 {
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  color: #4ecdc4;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(78, 205, 196, 0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.privacy-section p {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  line-height: 1.7;
  color: #fffdd0;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.privacy-section ul {
  background: rgba(78, 205, 196, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #4ecdc4;
  margin: 1rem 0;
}

.privacy-section li {
  color: #fffdd0;
  font-size: clamp(0.95rem, 2.5vw, 1rem);
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}

.privacy-section li:last-child {
  margin-bottom: 0;
}

.highlight-box {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid #ff6b6b;
}

.highlight-box h3 {
  color: #ff6b6b;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.highlight-box p {
  color: #fffdd0;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.external-link {
  color: #4ecdc4;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px dotted #4ecdc4;
  transition: all 0.3s ease;
}

.external-link:hover {
  color: #5fd3d3;
  border-bottom-style: solid;
  text-shadow: 0 0 5px rgba(78, 205, 196, 0.5);
}

.contact-section {
  background: linear-gradient(135deg, #4ecdc4, #44a6b5);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  text-align: center;
  color: #2d3142;
}

.contact-section h2 {
  color: #2d3142;
  margin-bottom: 1rem;
  border: none;
  padding: 0;
}

.contact-section p {
  color: #2d3142;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.contact-email {
  display: inline-block;
  background: #2d3142;
  color: #4ecdc4;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #2d3142;
}

.contact-email:hover {
  background: transparent;
  color: #2d3142;
  border-color: #2d3142;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(45, 49, 66, 0.3);
}

.divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #4ecdc4, transparent);
  margin: 2rem 0;
  border: none;
}

.footer-privacy {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(78, 205, 196, 0.3);
  color: #b0b0b0;
  font-size: 0.9rem;
}

.last-updated {
  background: rgba(78, 205, 196, 0.1);
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid rgba(78, 205, 196, 0.3);
  text-align: center;
  margin-bottom: 2rem;
}

.last-updated strong {
  color: #4ecdc4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .privacy-container {
    margin: 5rem 1rem 2rem 1rem;
    padding: 1.5rem;
  }

  .privacy-hero {
    padding: 1.5rem 1rem;
  }

  .privacy-section {
    margin-bottom: 2rem;
  }

  .meta-grid {
    grid-template-columns: 1fr;
  }

  .policy-meta,
  .highlight-box,
  .contact-section {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .privacy-container {
    margin: 4rem 0.5rem 1rem 0.5rem;
    padding: 1rem;
  }

  .policy-meta,
  .highlight-box,
  .contact-section {
    padding: 1rem;
  }
}
