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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fffaf0;
  color: #4a3728;
  line-height: 1.7;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.hero {
  text-align: center;
  padding: 3rem 1rem 2rem;
}

.sun-emoji {
  font-size: 5rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  color: #d4840b;
  margin-bottom: 0.75rem;
}

.hero .subtitle {
  font-size: 1.15rem;
  color: #7a5c3e;
  max-width: 540px;
  margin: 0 auto;
}

.content-section {
  text-align: center;
  padding: 2.5rem 1rem;
  margin-bottom: 1rem;
  background: #fff7eb;
  border-radius: 12px;
}

.section-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.content-section h2 {
  font-size: 1.5rem;
  color: #c47a12;
  margin-bottom: 0.5rem;
}

.content-section p {
  font-size: 1.05rem;
  color: #5e4632;
  max-width: 560px;
  margin: 0 auto;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  color: #a07840;
  font-size: 0.95rem;
}

/* Glowing sun animation */
@keyframes sun-glow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(255, 180, 0, 0.4), 0 0 40px rgba(255, 160, 0, 0.2);
  }
  50% {
    text-shadow: 0 0 30px rgba(255, 180, 0, 0.8), 0 0 60px rgba(255, 160, 0, 0.4);
  }
}

.sun-emoji {
  animation: sun-glow 3s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .sun-emoji {
    font-size: 3.5rem;
  }

  main {
    padding: 1rem;
  }

  .content-section {
    padding: 1.5rem 0.75rem;
  }
}
