@media (max-width: 768px) {
  h1 {
    font-size: 1.3rem !important;
  }

  p {
    font-size: 0.9rem !important;
  }
  .navbar {
    padding: 15px 20px;
  }

  .menu-toggle {
    display: block !important;
  }

  .navbar nav {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: white;
    display: none;
    flex-direction: column;
  }

  .navbar nav a {
    margin: 0;
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .navbar nav.show {
    display: flex !important;
  }
  .about {
    padding: 60px 40px;
    max-width: 1000px;
    margin-top: -50px !important;
  }
  .about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr)) !important;
    gap: 20px;
  }
}

body {
  background-color: hsl(0, 23%, 97%);
}
.navbar {
  background-color: white;
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
.logo {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0a3cff;
}

.logo-img {
  width: 35px;
}

.navbar nav a {
  color: black;
  text-decoration: none;
  margin-left: 20px;
  font-size: 16px;
}

.navbar nav a.active,
.navbar nav a:hover {
  border-bottom: 2px solid #0a3cff;
}

/* Hero */
.hero {
  padding: 100px 40px;
  text-align: center;
  background-color: hsl(228, 100%, 52%, 0.5);
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

/* About Section */
.about {
  padding: 60px 40px;
  max-width: 1000px;
  margin: auto;
}

.about h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #0a3cff;
}

.about p {
  margin-bottom: 30px;
  color: #444;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10%, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card h3 {
  margin-bottom: 10px;
  color: #0a3cff;
}

/*compare*/

/* Mobile Navigation */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: black;
  cursor: pointer;
}
