 body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #ffffff; /* pure white */
      color: #333;
    }

    header {
      background-color: #0073e6;
      color: white;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    header h1 {
      margin: 0;
      font-size: 1.5rem;
    }

    nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      gap: 1.5rem;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: 500;
    }

    nav a:hover {
      text-decoration: underline;
    }

    .hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 3rem 1rem;
      background-color: #ffffff;
    }

    .hero img {
      width: 33vw;
      max-width: 100%;
      height: auto;
      border-radius: 1rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      margin-top: 1.5rem;
    }

    .hero h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
      text-align: center;
    }

    .hero p {
      font-size: 1.2rem;
      max-width: 600px;
      text-align: center;
    }

    .cta-button {
      margin-top: 2rem;
      padding: 0.75rem 1.5rem;
      background-color: #0073e6;
      color: white;
      border: none;
      border-radius: 5px;
      font-size: 1rem;
      cursor: pointer;
    }

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

    main {
      padding: 2rem 1rem;
      text-align: center;
    }

 footer {
  background-color: #ffffff;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  text-align: center;
  color: #666;
  border-top: 1px solid #e0e0e0;
}

.footer-links a {
  color: #0073e6;
  text-decoration: none;
  margin: 0 0.25rem;
}

.footer-links a:hover {
  text-decoration: underline;
}


    @media (max-width: 600px) {
      nav ul {
        flex-direction: column;
        align-items: flex-end;
      }
    }
	  .features {
  background-color: #ffffff;
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.features h2 {
  color: #0073e6;
  margin-bottom: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  text-align: left;
}

.feature h3 {
  margin-bottom: 0.5rem;
  color: #0073e6;
}

.feature p {
  margin: 0;
  font-size: 1rem;
  color: #444;
}

/* --- Beta Testers Page Styles --- */

.beta-wrapper {
  max-width: 1000px;
  margin: auto;
  padding: 2rem;
  background-color: white;
  text-align: center;
}

.beta-title {
  color: #0024f5;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.beta-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.beta-grid img {
  width: 250px;
  height: auto;
}

.beta-text {
  text-align: left;
  max-width: 400px;
}

.beta-text h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

.blue-button {
  background-color: #0024f5;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.95rem;
  cursor: pointer;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  text-decoration: none;
}

.blue-button:hover {
  background-color: #0019b3;
}

/* --- Feedback Form --- */

.beta-feedback {
  margin-top: 3rem;
  text-align: center;
}

.beta-feedback h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #0073e6;
}

.beta-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  background: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0073e6;
  outline: none;
  background: #fff;
}
.hero img {
  max-width: 400px; /* or 300px, depending on what looks good */
  width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto;
}

.hero-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  width: 100%;
  max-width: 1000px;
}

.image-item {
  text-align: center;
}

.image-item img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  display: block;
}

.caption {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  font-weight: bold;
  color: #333;
}

.description {
  margin-top: 0.25rem;
  font-size: 0.95rem;
  color: #555;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .hero-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero-image-grid {
    grid-template-columns: 1fr;
  }
}
