/* Сброс и базовые стили */
body, h1, h2, h3, p, ul, ol, li, form, input, button {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Rubik', sans-serif;
}

body {
  background-color: #f8f8f8;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 0;
}

h1, h2 {
  color: #2b2b2b;
  margin-bottom: 20px;
}

ul, ol {
  list-style: none;
  padding-left: 0;
}

.btn {
  display: inline-block;
  background-color: #ff5722;
  color: #fff;
  padding: 12px 24px;
  border: none;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #e64a19;
}

/* Хедер */
.header {
  background: linear-gradient(120deg, #ffe5b4, #ffb74d);
  text-align: center;
  padding: 80px 20px;
}

.header h1 {
  font-size: 32px;
  margin-bottom: 16px;
}

.header p {
  font-size: 18px;
  margin-bottom: 24px;
}

/* Секции */
section {
  background-color: #fff;
  margin: 20px 0;
  padding: 40px 0;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.benefits ul li,
.package ul li,
.audience ul li,
.faq ul li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.income p {
  font-size: 20px;
  margin-bottom: 12px;
}

.steps ol li {
  padding: 8px 0;
  counter-increment: step;
  position: relative;
  padding-left: 28px;
}

.steps ol li::before {
  content: counter(step) ".";
  position: absolute;
  left: 0;
  color: #ff5722;
  font-weight: bold;
}

.testimonials blockquote {
  margin-bottom: 20px;
  padding: 16px;
  border-left: 4px solid #ff5722;
  background-color: #fffbe6;
  font-style: italic;
}

.testimonials cite {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #555;
}

/* CTA форма */
.cta {
  text-align: center;
  background-color: #ffecb3;
}

form input[type="text"],
form input[type="email"] {
  width: 80%;
  max-width: 400px;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
}

form button {
  margin-top: 16px;
}

.note {
  font-size: 14px;
  margin-top: 12px;
  color: #666;
}

/* Footer */
.footer {
  text-align: center;
  font-size: 14px;
  color: #888;
  padding: 40px 20px;
  background-color: #f1f1f1;
}
