body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fdf6f0;
  color: #333;
  line-height: 1.6;
}

section {
  padding: 40px 20px;
  text-align: center;
}

#hero {
  background: linear-gradient(to right, #f9d5d5, #fceabb);
  padding: 60px 20px;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #ff6f61;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #e85c50;
}

#modules {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.module {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  max-width: 300px;
}

footer {
  background: #eee;
  padding: 20px;
  font-size: 0.9em;
}

header {
  position: sticky;
  top: 0;
  background: #fff8f0;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
  text-align: center;
}

header nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #ff6f61;
  font-weight: bold;
}

.welcome-message h2 {
  font-size: 1.5em;
  color: #ff6f61;
  margin-bottom: 10px;
}

#quote {
  font-style: italic;
  color: #555;
  transition: opacity 0.5s ease;
}

.visitor-counter {
  margin-top: 20px;
  font-size: 1em;
  color: #333;
}

.daily-ritual {
  margin-top: 30px;
  font-size: 1.1em;
  color: #6A5ACD;
}

.play-button-container {
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  #modules {
    flex-direction: column;
    align-items: center;
  }

  .module {
    width: 90%;
    max-width: 400px;
  }

  .cta-button {
    width: 90%;
    margin: 10px auto;
    display: block;
  }
}
