.privacy {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 6rem 0;
  position: relative;
}

.privacy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,102,204,0.1), transparent);
}

.privacy__intro {
  max-width: 900px;
  margin: 0 auto 5rem;
  text-align: center;
}

.privacy__intro-text {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-weight: 400;
}

.privacy__highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--primary);
  padding: 1.25rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(0, 102, 204, 0.2);
  box-shadow: 0 8px 32px rgba(0, 102, 204, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.privacy__highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 102, 204, 0.15);
}

.privacy__highlight-icon {
  font-size: 1.25rem;
  color: inherit;
}

.privacy__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.privacy__card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.06),
    0 4px 16px rgba(0, 0, 0, 0.04);
  position: relative;
}

.privacy__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.privacy__card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 102, 204, 0.2);
}

.privacy__card:hover::before {
  opacity: 1;
}

.privacy__card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
  filter: grayscale(20%);
  color: var(--primary);
}

.privacy__card-title {
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.privacy__list {
  list-style: none;
  padding: 0;
}

.privacy__list li {
  padding: 0.75rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 2rem;
  line-height: 1.6;
}

.privacy__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.1rem;
  top: 0.75rem;
}

.privacy__footer {
  text-align: center;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(0, 102, 204, 0.2);
  box-shadow: 0 8px 32px rgba(0, 102, 204, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.privacy__footer p {
  margin-bottom: 0.5rem;
  color: var(--text-light);
  line-height: 1.6;
}

.privacy__link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  transition: var(--transition);
}

.privacy__link:hover {
  color: var(--primary-dark);
}

.privacy__date {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .privacy__grid {
    grid-template-columns: 1fr;
  }
  
  .privacy__highlight {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}
