/* General Reset / Utility */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.site-header .logo img {
  height: 40px;
  /* Adjust as needed */
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  min-height: 60vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
}

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

.hero p {
  margin-bottom: 2rem;
}

.cta-button {
  text-decoration: none;
  background: #0077cc;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #005fa3;
}

/* Intro Section */
.intro-section {
  padding: 2rem 0;
  background: #f9f9f9;
}

/* Features Section */
.features-section {
  padding: 2rem 0;
}

.features-section h2 {
  margin-bottom: 1rem;
}

.features-list {
  list-style: none;
}

.features-list li {
  margin-bottom: 1rem;
  padding-left: 20px;
  position: relative;
}

.features-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0077cc;
}

/* Benefits Section */
.benefits-section {
  padding: 2rem 0;
  background: #f9f9f9;
}

.benefits-section h2 {
  margin-bottom: 1rem;
}

.benefits-list {
  list-style: none;
  margin-left: 0;
}

.benefits-list li {
  margin-bottom: 1rem;
  padding-left: 20px;
  position: relative;
}

.benefits-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0077cc;
}

/* Coming Soon Section */
.coming-soon-section {
  padding: 2rem 0;
}

/* Sign Up Section */
.signup-section {
  padding: 2rem 0;
  background: #f0f0f0;
  text-align: center;
}

.signup-form {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.signup-form input[type="email"] {
  padding: 0.5rem;
  width: 220px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.signup-form button {
  padding: 0.5rem 1rem;
  border: none;
  background: #0077cc;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.signup-form button:hover {
  background: #005fa3;
}

/* Footer */
.site-footer {
  background: #333;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
}

.site-footer em {
  font-style: italic;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
  }

  .hero {
    text-align: center;
    min-height: 50vh;
  }

  .hero h1 {
    font-size: 1.5rem;
  }
  
  .cta-button {
  display: inline-block;
  text-align: center;
  padding: 1rem 2rem;
  background-color: #007bff; /* Adjust to your preferred color */
  color: #fff;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0056b3;
}

.cta-button .cta-lead {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-button .cta-text {
  display: block;
  font-size: 1.2rem;
}

#thank-you-message {
      display: none;
      margin-top: 1rem;
      padding: 1rem;
      background-color: #e0ffe0;  /* light green background */
      border: 2px solid #008000;  /* green border */
      color: #004000;             /* dark green text */
      border-radius: 4px;
      font-size: 1.1rem;
      text-align: center;
    }

}
