/* Simplified Terms of Service CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
  padding: 20px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
}

.header {
  background: #4f46e5;
  color: white;
  padding: 30px;
  text-align: center;
}

.header h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.header p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.content {
  padding: 30px;
}

.intro {
  background: #f8fafc;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 25px;
  border-left: 3px solid #4f46e5;
}

.section {
  margin-bottom: 25px;
}

.section h2 {
  color: #1e293b;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e8f0;
}

.section p {
  color: #475569;
  margin-bottom: 15px;
}

ul {
  margin: 15px 0;
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
  color: #475569;
  padding-left: 5px;
}

.notice {
  background: #fffbeb;
  border-left: 3px solid #f59e0b;
  padding: 15px;
  margin: 15px 0;
  border-radius: 0 4px 4px 0;
}

.notice strong {
  color: #b45309;
}

.contact {
  background: #f8fafc;
  padding: 25px;
  margin-top: 30px;
  border-radius: 6px;
  text-align: center;
}

.contact h2 {
  margin-bottom: 10px;
}

.contact-email {
  color: #4f46e5;
  font-weight: 500;
  text-decoration: none;
}

.contact-email:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  body {
    padding: 15px;
  }
  
  .header, .content {
    padding: 20px;
  }
}