body {
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f9!important;
  margin: 0;
  padding: 0;
  color: #333;
}

.main_box {
  max-width: 800px;
  margin: 80px auto;
  padding: 20px 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.main_box h1 {
  text-align: center;
  font-size: 2em;
  color: #2c3e50;
  margin: 20px 0;
}

.main_box h2 {
  margin-top: 30px;
  font-size: 1.2em;
  color: #1a252f;
}

.main_box p {
  line-height: 1.6;
  font-size: 16px;
}


.header_sec {
  background: #fff;
  box-shadow: 0 10px 20px 0 #0000001a;  left: 0;
  min-height: 80px;
  padding: 0 20px;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
}

/* Optional: logo and nav styles */
.mobile-logo-container img {
  height: 40px;
}

.nav_links {
  margin-left: auto;
  display: flex;
  gap: 20px;
}

.nav_links a {
  text-decoration: none;
  color: #21342b;
  font-weight: 500;
  font-size: 16px;
}

.nav_links a:hover {
  text-decoration: underline;
}

.header_sec .navbar-nav .nav-link.active, .header_sec .navbar-nav .nav-link.show {
    color: #bf1f26;
    font-weight: 700;
}

.footer_sec {
    align-items: center;
    background: #fff;
    bottom: 0;
    box-shadow: 0 -10px 20px 0 #0000001a;
    display: flex;
    justify-content: center;
    left: 0;
    min-height: 50px;
    position: fixed;
    width: 100%;
    z-index: 9999;
}

.img_footer_logo {
    height: 40px;
    max-width: 100%;
}
.footer_text {
    align-items: center;
    display: flex;
    justify-content: space-between;
}
.footer_sec p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    text-align: center;
}
.footer_sec p span {
    color: #bf1f26;
    font-weight: 700 !important;
}