/* styles.css */

/* Reset & base */
body, h1, h2, p, ul, li, nav, footer, section {
  margin: 0; padding: 0;
  font-family: 'Open Sans', sans-serif;
  color: #333;
}
body {
  background: #f9f9f9;
  line-height: 1.6;
  font-size: 16px;
}
a {
  color: #ff6600;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
header {
  background: #003366;
  padding: 20px 30px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  font-weight: 700;
  font-size: 1.5rem;
  font-family: 'Montserrat', sans-serif;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav ul li a {
  color: white;
  font-weight: 600;
}
nav ul li a:hover {
  color: #ff6600;
}
.container {
  max-width: 1000px;
  margin: 30px auto;
  padding: 0 15px;
}
.hero {
  background: white;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
  text-align: center;
}
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 15px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #555;
}
.btn-primary {
  background: #ff6600;
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-block;
}
.btn-primary:hover {
  background: #e65500;
}
.benefits {
  margin: 60px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.benefit-item {
  background: white;
  border-radius: 8px;
  padding: 25px 20px;
  box-shadow: 0 1px 6px rgb(0 0 0 / 0.1);
  text-align: center;
  font-weight: 600;
  color: #003366;
  font-size: 1.1rem;
}
.how-it-works {
  background: white;
  padding: 30px 25px;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgb(0 0 0 / 0.1);
  max-width: 700px;
  margin: 0 auto 60px auto;
}
.how-it-works h2 {
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  margin-bottom: 25px;
  color: #003366;
}
.steps {
  list-style: decimal inside;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}
footer {
  background: #003366;
  color: white;
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9rem;
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
}
