body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7faff;
  color: #222;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #377dff;
}

.logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.2s;
}

nav a.cta {
  background: #377dff;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 24px;
  font-weight: 600;
  margin-left: 1rem;
  transition: background 0.2s;
}

nav a.cta:hover {
  background: #255ec7;
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem 0 1rem;
}

.hero {
  text-align: center;
  padding: 3rem 1rem 2rem 1rem;
  background: linear-gradient(120deg, #eaf3ff 0%, #f7faff 100%);
  border-radius: 16px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: #222;
}

.hero p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
  border: none;
  cursor: pointer;
}

.btn.primary {
  background: #377dff;
  color: #fff;
  box-shadow: 0 2px 8px rgba(55,125,255,0.08);
}

.btn.primary:hover {
  background: #255ec7;
}

.btn.secondary {
  background: #fff;
  color: #377dff;
  border: 2px solid #377dff;
}

.btn.secondary:hover {
  background: #eaf3ff;
}

.section {
  margin: 3rem 0;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(55,125,255,0.04);
}

.section.alt {
  background: #f7faff;
  box-shadow: none;
}

.section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: #eaf3ff;
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: 0 2px 8px rgba(55,125,255,0.04);
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
  color: #377dff;
}

.feature-card p {
  margin: 0;
  color: #333;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.story-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: 0 2px 8px rgba(55,125,255,0.04);
}

.story-card h3 {
  margin-top: 0;
  font-size: 1.1rem;
  color: #377dff;
}

.story-card span {
  color: #888;
  font-size: 0.95rem;
}

.story-card blockquote {
  margin: 1rem 0 0 0;
  font-style: italic;
  color: #333;
}

.cta-section {
  text-align: center;
  padding: 2.5rem 1rem;
  background: linear-gradient(120deg, #eaf3ff 0%, #f7faff 100%);
  border-radius: 16px;
  margin: 3rem 0 2rem 0;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 2rem;
}

.cta-section .guarantee {
  margin-top: 1.5rem;
  color: #888;
  font-size: 0.95rem;
}

footer {
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  color: #888;
  font-size: 0.95rem;
}
