* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Inter', sans-serif; }
body { line-height: 1.6; background-color: #f9f9f9; color: #333; }

.header {
  color: #FFFFFF;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}
.header::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.header * {
  position: relative;
  z-index: 1; /* makes text appear above overlay */
}
.header h1, header p, .cta-buttons { position: relative; z-index: 1; }
.header h1 { font-size: 3rem; margin-bottom: 10px; }
.header p { font-size: 1.3rem; max-width: 600px; margin: 0 auto; }

.cta-buttons { margin-top: 30px; }
.cta-buttons a {
  text-decoration: none;
  padding: 14px 28px;
  background-color: #3b82f6;
  color: #fff;
  border-radius: 6px;
  margin: 0 10px;
  display: inline-block;
  font-weight: 600;
  transition: background 0.3s ease;
}
.cta-buttons a:hover { background-color: #2563eb; }

section { padding: 60px 20px; max-width: 1200px; margin: auto; }
.features { display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-around; margin-top: 30px; }
.feature-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  flex: 1 1 250px;
  text-align: center;
}
.feature-card i { font-size: 30px; color: #3b82f6; margin-bottom: 10px; }
.feature-card h3 { margin-bottom: 10px; color: #1f2937; }

.divider-hero {
  
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}

/* Alternating backgrounds */
.faq { background-color: #f3f4f6; }
.mobile-app { background-color: #eef6ff; }
.vision { background-color: #fdf6ec; }
.contact { background-color: #f3f4f6; }

.faq h2, .mobile-app h2, .vision h2, .contact h2 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 2rem;
  color: #1f2937;
}

.faq-item, .vision p, .contact p { margin-bottom: 20px; text-align: center; }
.mobile-app img { max-width: 220px; margin: 20px auto; display: block; }
.store-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.store-buttons img { height: 50px; cursor: pointer; }

/* Contact Section */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}
.contact-form, .contact-info {
  flex: 1 1 45%;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.contact-info h3 { margin-bottom: 15px; color: #1f2937; }
.contact-info p {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
}
.contact-info i { color: #3b82f6; font-size: 18px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.contact-form button {
  background: #3b82f6;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.contact-form button:hover { background: #2563eb; }

footer {
  text-align: center;
  padding: 30px 20px;
  background: #111827;
  color: #fff;
  font-size: 0.9rem;
}

@media(max-width: 768px) {
  .features { flex-direction: column; align-items: center; }
  .cta-buttons a { margin-bottom: 10px; display: block; }
  header h1 { font-size: 2rem; }
  .contact-container { flex-direction: column; }
}
