
body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
}
header {
    background-color: #1e90ff;
    color: white;
    text-align: center;
    padding: 3em 1em;
}
.logo {
    max-width: 100px;
    margin-bottom: 1em;
}
.tagline {
    font-size: 1.2em;
    margin-bottom: 1em;
}
.cta-button {
    background-color: #fff;
    color: #1e90ff;
    padding: 1em 2em;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
}
.features, .steps {
    max-width: 800px;
    margin: auto;
    padding: 2em 1em;
}
.features ul {
    list-style: none;
    padding: 0;
}
.features li {
    background: #fff;
    margin: 0.5em 0;
    padding: 1em;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.steps ol {
    padding-left: 1.2em;
}
footer {
    text-align: center;
    padding: 2em 1em;
    font-size: 0.9em;
    background: #eee;
    color: #555;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
header, section {
    animation: fadeInUp 0.8s ease both;
}
.plan {
    background: white;
    padding: 1.5em;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 1em;
    flex: 1;
}
.plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.plan.highlight {
    border: 2px solid #1e90ff;
}


#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e90ff;
  color: white;
  padding: 1em;
  text-align: center;
  display: none;
  font-size: 0.9em;
  z-index: 1000;
}
#cookie-banner button {
  background: white;
  color: #1e90ff;
  border: none;
  padding: 0.5em 1em;
  margin-left: 1em;
  border-radius: 5px;
  cursor: pointer;
}


.testimonials {
  background-color: #f9f9f9;
  padding: 2em;
  text-align: center;
}
.testimonial {
  max-width: 500px;
  margin: 1em auto;
  font-style: italic;
}
.testimonial strong {
  display: block;
  margin-top: 0.5em;
  font-style: normal;
}
