.policy-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  line-height: 1.6;
  color: #333;
}

.policy-header {
  text-align: center;
  margin-bottom: 50px;
}

.policy-header h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.last-updated {
  color: #888;
  font-size: 0.9rem;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.policy-card {
  display: flex;
  gap: 25px;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #eee;
  transition: transform 0.2s ease;
}

.policy-card:hover {
  border-color: #42b983; /* Colore tema Vue */
}

.icon {
  font-size: 2rem;
  background: #f0fdf4;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.details h2 {
  margin: 0 0 10px 0;
  font-size: 1.25rem;
  color: #2c3e50;
}

.details ul {
  padding-left: 20px;
  margin: 10px 0;
}

.notice-box {
  background: #f8f9fa;
  padding: 15px;
  border-left: 4px solid #42b983;
  margin-top: 15px;
  font-size: 0.95rem;
}

/* Ottimizzazione per Pixel 7 */
@media (max-width: 768px) {
  .policy-card {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
  
  .icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .policy-header h1 {
    font-size: 1.8rem;
  }
}