.hero {
  background: url('../images/home/network-main.png') center/cover no-repeat;
  color: white;
  padding: 14rem 0;
  text-align: center;
}

.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 40px);
  margin: 20px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  box-sizing: border-box;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}

.nav-list .nav-link {
  text-decoration: none;
  font-size: 14px;
  color: #000;
  font-weight: 600;
}
.nav-link.active {
  color: #467B3A !important;
}

.get-started-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 76px;
  background: #467B3A;
  color: white;
}
#network h5 {
  color: #2d572c;
}

#network ul li {
  margin-bottom: 6px;
  color: #333;
}

#network p {
  font-size: 0.95rem;
  color: #555;
}

#bg {
  background-color: #FDFFF1;
  padding: 1.5rem; /* Optional: replicates Bootstrap's p-4 */
  border: 1px solid #dee2e6; /* Optional: matches Bootstrap border */
  border-radius: 0.375rem; /* Optional: matches Bootstrap rounded */
}

#ng {
  background-color: #DDE5B6;
  padding: 1.5rem;
  border-radius: 0.375rem;
}

.card-gap {
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .card-gap {
    margin-bottom: 0;
    margin-right: 28px;
  }

  .row .col-md-6:last-child .card-box {
    margin-right: 0;
  }
}

.footer-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  font-style: normal;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  text-decoration: underline;
}

.divider-line {
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 0.3px;
  background-color: #E0C98D;
}

@media (max-width: 767px) {
  .divider-line {
    display: none;
  }
}