body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f7f7f7;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 700px;
  margin: 3rem auto;
  padding: 3rem;
  background: white;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  text-align: center;
}

header h1 {
  margin-bottom: 1rem;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
}

header p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.hero-section {
  margin: 3rem 0;
}

.hero-section h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #2c3e50;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
  text-align: left;
}

.feature {
  font-size: 1.1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #007bff;
}

.customization {
  margin: 3rem 0;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
}

.customization h2 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.examples {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.5rem 0;
  text-align: left;
}

.example {
  font-size: 1.1rem;
  font-weight: 500;
  color: #495057;
}

.tagline {
  font-size: 1.2rem;
  font-weight: 600;
  color: #007bff;
  margin-top: 1.5rem;
  font-style: italic;
}

.cta {
  margin: 3rem 0;
}

.cta h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.beta-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 2rem 0;
  text-align: left;
}

.benefit {
  font-size: 1.1rem;
  font-weight: 500;
  color: #28a745;
}

form {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

input[type="email"] {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  flex: 1;
}

button {
  padding: 0.5rem 1rem;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.form-button {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  min-width: 160px;
  text-align: center;
}

.form-button.primary {
  background: #007bff;
  color: white;
}

.form-button.primary:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.form-button.secondary {
  background: transparent;
  color: #007bff;
  border: 2px solid #007bff;
}

.form-button.secondary:hover {
  background: #007bff;
  color: white;
  transform: translateY(-2px);
}

.cta-subtext {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  margin-top: 1rem;
}

@media (max-width: 600px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .form-button {
    width: 100%;
    max-width: 280px;
  }
}
.contact {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #e9ecef;
}

.contact h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  font-weight: 600;
}

.contact-info {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: #f8f9fa;
  color: #495057;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.contact-link:hover {
  background: #007bff;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

@media (max-width: 600px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .contact-link {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
