.privacy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.privacy-container h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: #fff;
  text-align: center;
  font-family: Rene Bieder Galano Grotesque Alt, Arial, sans-serif;
}

.privacy-container > p {
  font-size: 18px;
  line-height: 1.6;
  color: #d7d7e0;
  text-align: center;
  margin-bottom: 60px;
}

.how-it-works-section {
  margin-top: 60px;
}

.section-heading {
  font-size: 32px;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  font-family: Rene Bieder Galano Grotesque Alt, Arial, sans-serif;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.step-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.05) rgba(255, 255, 255, 0.05) rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: inset 0 0 8px rgba(237, 253, 245, 0.1);
}

.step-item:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 40px;
  height: 40px;
  background: #ff6714;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: bold;
  color: #fff;
}

.step-heading {
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
  font-family: Rene Bieder Galano Grotesque Alt, Arial, sans-serif;
}

.step-text {
  font-size: 16px;
  line-height: 1.5;
  color: #d7d7e0;
}

.cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .privacy-container h1 {
    font-size: 36px;
  }
  
  .section-heading {
    font-size: 28px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .privacy-container {
    padding: 30px 15px;
  }
  
  .privacy-container h1 {
    font-size: 32px;
  }
  
  .privacy-container > p {
    font-size: 16px;
  }
} 