/* === Global Reset & Base Styles === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}



/* === Hero Section Styles === */
.hero {
  color: blue;
  padding: 90px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 8%;
  padding-right: 8%;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  max-width: 700px;
  color: #f9fbfd;;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  max-width: 600px;
}

.hero button {
  background: #fff;
  color: #002d80;
  padding: 14px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.hero button:hover {
  background: #e6e6e6;
}

/* Headings */
h2, h3, h4 {
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero {
    text-align: center;
    align-items: center;
  }

  .hero h1, 
  .hero p {
    max-width: 100%;
  }
}
