/* Global Background Styling for All Pages */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-image: url('background_dark.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #333;
  font-size: 16px;
}

/* Header Styling */
header {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 20px;
  text-align: center;
}
header img {
  width: 50%;
  max-width: 400px;
  height: auto;
}

/* Hero and Feature Section Styling */
.hero, .features {
  background: rgba(255, 255, 255, 0.85);
  margin: 20px;
  padding: 40px 20px;
  border-radius: 12px;
  text-align: center;
}

/* CTA Form Styling */
.cta-form {
  text-align: center;
  margin: 40px 20px;
}
.cta-form form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cta-form input[type="email"] {
  width: 100%;
  max-width: 400px;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.cta-form button {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #0078ff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Legal Content Section Styling */
.legal-content {
  background: rgba(255, 255, 255, 0.85);
  margin: 20px auto;
  padding: 40px 20px;
  max-width: 900px;
  border-radius: 12px;
  color: #000;
  line-height: 1.6;
}

/* Footer Styling */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  background-color: rgba(240, 240, 240, 0.8);
  margin-top: 20px;
}

/* Mobile-specific background */
@media (max-width: 768px) {
  body {
    background-image: url('background_mobile.jpg');
    background-attachment: scroll;
    font-size: 14px;
  }

  .hero h1 {
    font-size: 2rem;
  }
  .hero p, .features ul {
    font-size: 1rem;
  }
}
