:root {
  --primary: #0050b3;
  --accent: #ffc107;
  --bg: #f4f6f8;
  --white: #ffffff;
  --text: #333;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
}

.container {
  max-width: 1140px;
  margin: auto;
  padding: 20px;
}

.hero {
  background: var(--primary);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 2.2em;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.cta-button {
  background: var(--accent);
  color: #000;
  padding: 15px 30px;
  font-size: 1.1em;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

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

section {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

h2 {
  margin-top: 0;
  font-size: 1.5em;
}

.benefit-item, .faq-item, blockquote {
  margin-bottom: 15px;
  line-height: 1.6;
}

blockquote {
  font-style: italic;
  background: #f1f1f1;
  padding: 10px 20px;
  border-left: 5px solid var(--primary);
  border-radius: 8px;
}

.contact {
  text-align: center;
  margin-bottom: 60px;
}

.contact a {
  color: var(--primary);
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8em;
  }

  .hero p {
    font-size: 1em;
  }

  .cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .container {
    padding: 15px;
  }

  section {
    padding: 20px;
  }
}
