main {
  font-family: Fira Sans;
  line-height: 1.6;
  background-color: #f7f7f7;
  margin: 0;
  padding: 40px 20px;
}

.hero {
  text-align: center;
  padding: 50px 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,0,0,0.08);
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 2em;
  color: #222965;
  margin-bottom: 15px;
}

.hero p {
  color: #444;
  font-size: 1.1em;
  margin-bottom: 15px;
}

.main-btn {
  background-color: #1c82f0;
  color: white;
  font-size: 1.1em;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
  margin-top: 25px;
  display: inline-block;
}

.main-btn:hover {
  background-color: #0056b3;
  cursor: pointer;
}

.features {
  max-width: 1000px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.features h2 {
  color: #304b7d;
  margin-bottom: 30px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.feature-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  text-align: left;
}

.feature-card h3 {
  color: #222965;
  margin-bottom: 10px;
}

.feature-card p {
  color: #555;
  font-size: 0.95em;
}

.cta {
  text-align: center;
  margin-top: 40px;
}

.cta h2 {
  color: #222965;
  margin-bottom: 15px;
}

.cta p {
  margin-bottom: 20px;
  color: #444;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.secondary-btn {
  background-color: #304b7d;
  color: white;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.secondary-btn:hover {
  background-color: #1c82f0;
  cursor: pointer;
}