* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f8f9fa;
  color: #2c3e50;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  padding: 20px 0;
}

.container {
  max-width: 850px;
  margin: 0 auto;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  overflow: hidden;
}

.header {
  background-color: #ce5b78;
  color: #ffffff;
  text-align: center;
  padding: 35px 20px;
}

.header h1 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 600;
}

.header p {
  margin: 8px 0 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.content {
  padding: 35px;
}

.content h2 {
  color: #ce5b78;
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #fbaeb1;
}

.content h2:first-of-type {
  margin-top: 0;
}

.content p {
  line-height: 1.7;
  margin-bottom: 16px;
  color: #333;
  font-size: 1rem;
}

.content ul {
  margin-bottom: 16px;
  padding-left: 0;
}

.content li {
  list-style: none;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
  line-height: 1.7;
  color: #333;
}

.content li::before {
  content: '•';
  color: #fbaeb1;
  font-size: 1.3rem;
  position: absolute;
  left: 0;
  line-height: 1.3;
}

.content strong {
  color: #ce5b78;
  font-weight: 600;
}

a {
  color: #ce5b78;
  text-decoration: none;
  border-bottom: 1px solid #fbaeb1;
  transition: all 0.2s ease;
}

a:hover {
  color: #b84d6d;
  border-bottom-color: #ce5b78;
}

.footer {
  background-color: #f0f0f0;
  color: #666;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  border-top: 1px solid #e0e0e0;
}

/* Responsive */
@media (max-width: 768px) {
  body {
    padding: 10px 0;
  }

  .container {
    margin: 0 10px;
    border-radius: 4px;
  }

  .header {
    padding: 25px 15px;
  }

  .header h1 {
    font-size: 1.8rem;
  }

  .content {
    padding: 25px;
  }

  .content h2 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .header h1 {
    font-size: 1.6rem;
  }

  .content {
    padding: 20px;
  }

  .content h2 {
    font-size: 1.15rem;
  }

  .content p,
  .content li {
    font-size: 0.95rem;
  }
}
