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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #FFF5F8 0%, #FFF0E6 100%);
  min-height: 100vh;
  color: #333;
  line-height: 1.6;
}

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

.header {
  text-align: center;
  margin-bottom: 40px;
}

.app-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(255, 107, 157, 0.3);
}

.app-icon span {
  font-size: 48px;
}

h1 {
  font-size: 32px;
  font-weight: 700;
  color: #FF6B9D;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 16px;
  color: #666;
}

.section {
  background: white;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.section h2 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #FFF0E6;
}

.section p {
  color: #555;
  margin-bottom: 12px;
}

.section ul {
  list-style: none;
  color: #555;
}

.section ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.section ul li::before {
  content: "•";
  color: #FF6B9D;
  font-weight: bold;
  position: absolute;
  left: 8px;
}

.contact-link {
  color: #FF6B9D;
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  text-decoration: underline;
}

.footer {
  text-align: center;
  padding: 20px;
  color: #999;
  font-size: 14px;
}

@media (max-width: 480px) {
  .container {
    padding: 24px 16px;
  }

  h1 {
    font-size: 28px;
  }

  .section {
    padding: 20px;
  }
}
