* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
}

/* HERO */
.hero {
  padding: 70px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: white;
}

.hero h1 {
  font-size: 38px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* CTA BUTTON */
.cta-btn {
  display: inline-block;
  background: #0866ff;
  color: white;
  padding: 16px 28px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-btn:hover {
  background: #e86f00;
  transform: scale(1.03);
}

.cta-btn.large {
  padding: 18px 36px;
  font-size: 19px;
}

/* SECTIONS */
.section {
  padding: 50px 20px;
  text-align: center;
}

.section.gray {
  background: #f7f7f7;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.text {
  max-width: 700px;
  margin: auto;
  font-size: 16px;
}

/* PROBLEM LIST */
.problem-list {
  list-style: none;
  margin-top: 25px;
}

.problem-list li {
  font-size: 16px;
  margin: 8px 0;
}

/* FEATURES */
.features {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  font-weight: bold;
}

/* FINAL CTA */
.final-cta {
  padding: 60px 20px;
  text-align: center;
  background: #1a1a1a;
  color: white;
}

/* FOOTER */
footer {
  padding: 20px;
  background: #000;
  color: #aaa;
  font-size: 14px;
  text-align: center;
}


/* DEAL CARDS */
.deal-card {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
}

.deal-card h2 {
  margin-bottom: 15px;
}

.deal-card p {
  margin-bottom: 15px;
}

.deal-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.deal-card ul li {
  margin: 6px 0;
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: 20px auto;
  text-align: left;
}

.faq h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.faq p {
  font-size: 15px;
  color: #333;
}
