* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: yellow;/*#f7f9fc;*/
  color: #1f2937;
}

/* HEADER */
.header {
  background: #0b3c6f;
  color: white;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.logo span {
  color: #f97316;
}

nav a {
  color: white;
  margin-right: 20px;
  text-decoration: none;
}

.btn-login {
  background: white;
  color: #0b3c6f;
  border: none;
  padding: 8px 15px;
  border-radius: 6px;
  cursor: pointer;
}

/* HERO */
.hero {
  padding: 80px 40px;
  background: linear-gradient(120deg, #0b3c6f, #1d4ed8);
  color: white;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-buttons .btn {
  padding: 12px 22px;
  margin: 5px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.primary {
  background: #f97316;
  color: white;
}

.secondary {
  background: white;
  color: #0b3c6f;
}

/* SECTIONS */
section {
  padding: 70px 40px;
  text-align: center;
}

.subtitle {
  color: #6b7280;
  margin-bottom: 40px;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* CTA */
.cta {
  background: #0b3c6f;
  color: white;
  display:grid;
  height:20vh;
  
  grid-template-rows:50% 50%;
  grid-template-columns:auto;
}

.cta h2
{
    height:10vh;
    background-color:green;
}

/* FOOTER */
.footer {
  background: #111827;
  color: white;
  text-align: center;
  padding: 20px;
}

