/* Reset & Basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9fafa;
  color: #222;
  line-height: 1.6;
}

/* Container & Layout */
.container {
  width: 90%;
  max-width: 960px;
  margin: auto;
  padding: 2rem 1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(to bottom right, #004080, #0074cc);
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}

.hero img {
  max-width: 220px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.hero h1 {
  font-size: 2rem;
  margin: 1rem 0 0.5rem;
}

.hero .subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Call-to-Action Button */
.cta-button {
  display: inline-block;
  background: #ffae00;
  color: #000;
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
}

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

.cta-button.large {
  font-size: 1.2rem;
  padding: 1.1rem 2rem;
}

/* Section Headings */
h2 {
  font-size: 1.6rem;
  color: #003366;
  margin-bottom: 1rem;
  text-align: center;
}

/* Feature List */
.features ul {
  list-style: none;
  padding-left: 0;
  max-width: 700px;
  margin: auto;
}

.features li {
  padding: 0.7rem 0;
  border-bottom: 1px solid #ddd;
  font-size: 1rem;
  position: relative;
  padding-left: 1.8rem;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0074cc;
  font-weight: bold;
}

/* Testimonials */
.testimonial blockquote {
  background: #eef3f7;
  border-left: 4px solid #0074cc;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial cite {
  display: block;
  margin-top: 0.5rem;
  font-weight: bold;
  color: #003366;
}

/* Buy Section */
.buy {
  text-align: center;
  margin-top: 2rem;
}

.secure {
  font-size: 0.9rem;
  margin-top: 0.8rem;
  color: #555;
}

/* Footer */
footer {
  background: #002244;
  color: #fff;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.9rem;
}

footer a {
  color: #ffae00;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .cta-button.large {
    font-size: 1rem;
    padding: 0.9rem 1.4rem;
  }
  .seo-content {
  margin-top: 3rem;
  font-size: 1.05rem;
  color: #333;
}

.seo-content p {
  margin-bottom: 1.2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ratings .review {
  background: #f4f7fa;
  padding: 1rem 1.2rem;
  border-left: 4px solid #0074cc;
  margin-bottom: 1.2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 4px;
}

}
