* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #dcd2f0, #d8f8e1, #cce7fc);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  color: #1a1a1a;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.page-wrapper {
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
}

.hero {
  text-align: center;
  margin-bottom: 3rem;
}

.logo {
  width: 100px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.8rem;
  margin: 0;
}

.subtitle {
  font-size: 1.25rem;
  color: #555;
}

.content section {
  margin-bottom: 2.5rem;
}

.card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.card h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.card ul {
  padding-left: 1.2rem;
}

.card ul li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.glass {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta {
  text-align: center;
  margin-top: 3rem;
}

.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 2rem;
  background-color: #14b8a6;
  color: white;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #0f766e;
  transform: scale(1.05);
}
