/* Reset some default browser styles */
body, h1, h2, h3, p, blockquote, footer, section, header {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7f9fb;
  color: #222;
  line-height: 1.6;
  padding: 0 1rem;
}

.hero {
  background: linear-gradient(120deg, #f7f9fb 0%, #e3eafc 100%);
  padding: 3rem 1rem 2rem 1rem;
  text-align: center;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: 2.2rem;
  color: #174ea6;
  margin-bottom: 1rem;
}

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

.cta-btn, .secondary-cta {
  display: inline-block;
  margin: 0.5rem 0.5rem 0 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 24px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s, color 0.2s;
}

.cta-btn {
  background: #1a73e8;
  color: #fff;
  border: none;
}

.cta-btn:hover {
  background: #155ab6;
}

.secondary-cta {
  background: #c7dafc;
  color: #174ea6;
}
.secondary-cta:hover {
  background: #a6c8fa;
}

.features {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 2rem 1rem;
  margin-bottom: 2rem;
}

.features h2 {
  text-align: center;
  color: #1a73e8;
  margin-bottom: 1.5rem;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.feature {
  flex: 1 1 220px;
  max-width: 300px;
  background: #f7f9fb;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.feature h3 {
  color: #155ab6;
  margin-bottom: 0.5rem;
}

.social-proof {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.social-proof blockquote {
  font-style: italic;
  color: #444;
  margin-bottom: 1rem;
}

.social-proof footer {
  font-size: 0.95rem;
  color: #888;
}

.faq {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 2rem 1rem;
  margin-bottom: 2rem;
}

.faq h2 {
  color: #1a73e8;
  margin-bottom: 1rem;
  text-align: center;
}

.faq-item {
  margin-bottom: 1.2rem;
}

.faq-item h3 {
  color: #155ab6;
  margin-bottom: 0.3rem;
}

.footer-cta {
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  color: #222;
}

.footer-cta .cta-btn {
  margin-bottom: 0.5rem;
}

.footer-cta .note {
  color: #e53935;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.hero-profile {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: block;
  margin-left: auto;
  margin-right: auto;
} 

.rounded-img {
  border-radius: 16px;
} 

/* Responsive styles for mobile devices */
@media (max-width: 600px) {
  body {
    padding: 0;
  }

  .hero {
    padding: 1.5rem 0.5rem 1rem 0.5rem;
    border-radius: 0 0 12px 12px;
  }

  .hero-profile, .rounded-img, .circle-img, .pill-img {
    width: 120px !important;
    height: 120px !important;
    margin-bottom: 1rem;
  }

  .hero h1 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .cta-btn, .secondary-cta {
    width: 90%;
    max-width: 350px;
    margin: 0.5rem auto;
    display: block;
    font-size: 1.05rem;
    border-radius: 20px;
  }

  .features, .social-proof, .faq, .footer-cta {
    padding: 1rem 0.5rem;
    border-radius: 12px;
  }

  .feature-list {
    flex-direction: column;
    gap: 1rem;
  }

  .feature {
    max-width: 100%;
    padding: 0.8rem;
  }

  .footer-cta {
    padding: 1rem 0.5rem 0.5rem 0.5rem;
  }
} 