
:root {
  --bg-dark: #0F1E2D;
  --primary: #735F97;
  --secondary: #574EA2;
  --accent: #0EB0CC;
  --white: #ffffff;
  --font: 'Montserrat', sans-serif;
}

body {
  margin: 0;
  background-color: var(--bg-dark);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.6;
}

section {
  max-width: 800px;
  margin: auto;
  padding: 60px 20px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1, h2, h3 {
  color: var(--accent);
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5rem;
}

p, li {
  font-size: 1.1rem;
}

ul {
  padding-left: 20px;
}

.cta {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 28px;
  background-color: var(--accent);
  color: var(--white);
  font-weight: 600;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s, background 0.3s;
}

.cta:hover {
  background-color: var(--secondary);
  transform: scale(1.05);
}

.highlight {
  font-weight: 600;
  color: var(--primary);
}

.divider {
  height: 2px;
  background: var(--accent);
  margin: 60px 0;
  opacity: 0.2;
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 20px 0;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  section {
    padding: 40px 16px;
  }

  p, li {
    font-size: 1rem;
  }
}
