/* General Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

/* Layout Containers */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 2rem 0;
}

/* Hero Section */
.hero {
  background: linear-gradient(180deg, #121118, #0099ff);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: #fff;
  color: #0066cc;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #e0e0e0;
}

/* How It Works */
.how-it-works h2,
.benefits h2,
.faq h2,
.cta h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.step {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Benefits */
.benefits ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  padding: 0;
}

.benefits li {
  background: #fff;
  padding: 1rem;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Testimonial */
.testimonial blockquote {
  font-style: italic;
  background-color: #fff;
  padding: 2rem;
  border-left: 5px solid #0066cc;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* FAQ */
.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h4 {
  font-weight: bold;
}

/* CTA Section */
.cta {
  background-color: #093569;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}

.cta .small {
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* Footer */
.footer {
  background: #222;
  color: #aaa;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}
.hero-emojis {
  font-size: 4rem; /* Adjust size as needed */
  text-align: center;
}


.contact {
  background-color: #093569;
  padding: 20px 10px;
  text-align: center;
}

.contact h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact p {
  font-size: 1.1rem;
  margin: 6px 0;
}

.contact a {
  color: white !important;  /* Make links white */
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
  color: #cccccc; /* Optional: lighter shade on hover */
}

