body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: #222;
}

.hero {
  background: #f8fafc;
  padding: 60px 20px;
}

.container.landing {
  display: flex;
  max-width: 1100px;
  margin: auto;
  gap: 40px;
  align-items: center;
}

.hero-left {
  flex: 1;
}

.hero-right {
  flex: 1;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.cta-button {
    margin-top: 30px;
  display: inline-block;
  background: #2563eb;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 50px;
}

.section.landing {
  padding: 60px 20px;
  text-align: center;
} 

.section.landing.light {
  background: #f8fafc;
}

.grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 220px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cta-section {
  text-align: center;
  padding: 60px 20px;
}

.padding-top {
    padding-top: 10px;
}

.signup-form {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.signup-form input {
  width: 92%;
  margin-bottom: 10px;
  padding: 12px;
}

.signup-form button {
  width: 96%;
  background: #2563eb;
  color: white;
  padding: 12px;
  border: none;
  cursor: pointer;
}

.error {
  color: red;
  margin-bottom: 10px;
}

.success {
  color: green;
  margin-bottom: 10px;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo img {
  height: 70px; /* adjust as needed */
  width: auto;
}

.nav-right {
  display: flex;
    justify-content: right;
}