* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}
header {
  background-color: #ffffff;
  padding: 20px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}
nav {
  max-width: 960px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  position: relative;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}
nav ul li a:hover {
  color: #0A74DA;
  text-decoration: underline;
}
.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
}
.hamburger-menu span {
  height: 4px;
  width: 100%;
  background: #333;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}
@media (max-width: 700px) {
  .nav-logo {
    height: 28px;
  }
  nav ul {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 20px;
    border-radius: 8px;
    z-index: 100;
  }
  nav ul.open {
    display: flex;
  }
  .hamburger-menu {
    display: flex;
  }
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 22px;
  }
}

.hero {
  padding: 60px 20px 20px;
  background: linear-gradient(to bottom, #f9fbff, #ffffff);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo {
  display: block;
  max-width: 400px;
  width: 100%;
  height: auto;
  margin: 0 auto 20px;
  padding-top: 20px;
  text-align: center;
}
h1 {
  font-size: 36px;
  margin-bottom: 10px;
}
h2 {
  font-size: 28px;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: center;
  position: relative;
}
h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #0A74DA;
  margin: 10px auto 0;
  border-radius: 2px;
}
.btn {
  display: inline-block;
  margin-top: 10px;
  background-color: #0A74DA;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.container {
  max-width: 960px;
  margin: auto;
  padding: 40px 20px;
}
.section {
  padding: 20px;
  background-color: #f4f7fa;
  margin-top: 40px;
  border-radius: 8px;
}
.features-two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
  text-align: left;
}
.features-vertical {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
  text-align: left;
}
.features h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.contact {
  max-width: 500px;
  margin: 30px auto 60px;
  text-align: center;
}
.contact label {
  display: block;
  margin-top: 20px;
  font-weight: 600;
  text-align: left;
}
.contact input,
.contact textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 5px;
}
.contact button {
  margin-top: 20px;
  background-color: #0A74DA;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}
footer {
  text-align: center;
  padding: 20px;
  background: #0A74DA;
  color: white;
  font-size: 14px;
}
.cta-heading {
  font-size: 1.75em;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #000;
  text-decoration: none;
  border-bottom: none;
}
.hero-title {
  font-size: 32px;
  margin: 10px 0 0;
  text-align: center;
}
nav strong a {
  color: #000;
  text-decoration: none;
  font-weight: 700;
}
nav strong a:hover {
  color: #333;
  text-decoration: none;
}
.nav-logo {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 6px 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-subheading {
  font-weight: 700;
  font-size: 22px;
  margin-top: 20px;
}
.hero .btn {
  margin: 20px auto 0;
  display: inline-block;
}
nav strong a {
  color: #000 !important;
  text-decoration: none !important;
  font-weight: 700;
}

nav strong a:hover {
  color: #333 !important;
  text-decoration: none !important;
}