:root {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.5;
  font-weight: 400;
  color-scheme: light;
  color: #242424;
  background-color: #fff;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
}

body {
  background-color: #fff;
  color: #242424;
}

.gradient-bg {
  width: 100%;
  background-color: #ffaa11;
  background: linear-gradient(135deg, #d38d0b 0%, #ffd000 100%);
}

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  padding: 10px 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

main {
  padding: 20px 0;
}

.logo {
  display: flex;
}

.logo img {
  height: 40px;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu li {
  margin-left: 20px;
}

.menu a {
  text-decoration: none;
  color: white;
  white-space: nowrap;
}

.menu a.secondary {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 30em;
  padding: 0 20px;
  color: #fff;
}

.cta-title {
  font-size: 2.5em;
  line-height: 1.2;
  margin: 10px 0;
}

.cta-text {
  font-size: 1em;
  margin: 0;
  margin-bottom: 20px;
}

.cta-buttons a {
  display: inline-block;
  padding: 5px 20px;
  border-radius: 20px;
  text-decoration: none;
  margin: 0 10px;
}

.btn.primary {
  background-color: white;
  color: #ffaa11;
  border: 1px solid white;
}

.btn.secondary {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

footer {
  padding: 20px;
  text-align: center;
}

label {
  display: block;
  color: #ccc;
  font-size: small;
  text-transform: uppercase;
}

input[type="email"] {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #242424;
  margin-right: 10px;
  font-size: 1em;
  margin-bottom: 0.5em;
  min-width: none;
  max-width: 100%;
}

button[type="submit"] {
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #ddd;
  color: #242424;
  border: none;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease;
  margin-bottom: 0.5em;
}

button[type="submit"]:hover {
  background-color: #bbb;
}

a {
  color: #ffaa11;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.section {
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-item {
  background-color: #fff;
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  color: #242424;
}

.feature-item img {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.feature-item h3 {
  font-size: 1.5em;
  margin: 0;
  color: #242424;
}

.feature-item p {
  font-size: 1em;
  margin: 0;
  color: #666;
  max-width: 250px;
}

.rounded-box {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  display: flex;
  align-items: start;
  gap: 20px;
  color: #242424;
}

.rounded-box img {
  flex-shrink: 0;
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 0;
}

.rounded-box h2 {
  margin-top: 0;
}

.cta-final {
  background-color: #ffaa11;
  background: linear-gradient(135deg, #d38d0b 0%, #ffd000 100%);
  color: white;
  padding: 40px 0;
  text-align: center;
  border-radius: 10px;
}

.cta-final h2 {
  font-size: 2em;
  margin-bottom: 20px;
  margin-top: 0;
}

.cta-final p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.feature-group h2 {
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 30px;
  color: #242424;
}

.full-width-item {
  margin-bottom: 20px;
}

.two-items-row {
  display: flex;
  gap: 0;
}

.two-items-row .feature-item {
  flex: 1;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  text-align: center;
  align-items: center;
}

.two-items-row .feature-item:first-child {
  border-right: 1px solid #eee;
}

.header-feature h2 {
  font-size: 2em;
  margin-bottom: 10px;
  text-align: left;
}

.header-feature p {
  font-size: 1.1em;
  color: #555;
  margin-top: 0;
  max-width: 300px;
}

.header-feature {
  background-color: #fff;
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #242424;
}

.header-feature img {
  flex-shrink: 0;
  width: 100%;
  max-width: 300px;
  height: auto;
}

.text-content {
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .rounded-box {
    flex-direction: column;
  }

  .rounded-box img {
    margin-bottom: 20px;
    align-self: center;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .two-items-row {
    flex-direction: column;
  }
}

.success-message,
.error-message {
  background-color: #f0f0f0;
  border: 1px solid #4CAF50;
  border-radius: 8px;
  padding: 10px 15px;
  margin-top: 10px;
  color: #242424;
}

.error-message {
  border: 1px solid #f44336;
}

.success-message h3,
.error-message h3 {
  margin: 0;
}

.success-message p,
.error-message p {
  margin: 0;
  margin-bottom: 2px;
}

.staging-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ff6b35;
  color: white;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: sticky;
  top: 0;
  z-index: 1000;
}