body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('https://bizaday.com/images/bizaday2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #333;
}

/* .top-heading {
    text-align: center;
    font-size: 3em;
    margin-bottom: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333; 
    color: #fff; 
    z-index: 100;
    margin:0px;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); 
} */

header {
  background-color: #333;
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  margin: 0px;
  padding: 0px;
  font-size: 24px;
  font-weight: bold;
}

.logo a:link,.logo a:active,.logo a:visited{
    color:#FFF;
    text-decoration: none;
}

.logo a:hover{
    color:#FFF;
    text-decoration: underline;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
}

nav ul li a:hover {
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background-color: white;
  margin: 3px 0;
}

nav.mobile-menu {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  right: 0;
  top: 60px;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom:10px;
}

nav.mobile-menu li {
    margin-left: 0;
}

nav.mobile-menu a {
  color: black;
  padding: 0px 16px;
  display: block;
  text-decoration: none;
}

nav.mobile-menu a:hover {
  background-color: #ddd;
}

nav.show.mobile-menu {
  display: block;
}

.bizImg{
    max-width:50%;
}

.benList{
    margin-left:auto;
    margin-right:auto;
    max-width:375px;
    text-align:center;
}

.benList ul li{
    text-align:center;
    font-size:16pt;
}

.container {
    text-align:center;
    width: 90%;
    margin: 20px auto;
    padding-top: 0px;
}

section#featured {
    max-width:90%;
}

section,footer {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
    margin: 10px auto;
    border-radius: 18px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

section img,footer img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px auto 10px auto;
}

section h2,footer h2 {
    text-align: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

section h3 {
    color: #555;
    margin-top: 10px;
}

section ul {
    list-style: none;
    padding: 0;
}

section ul li {
    margin-bottom: 5px;
}

.get-started-button {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 15px;
    font-size:16pt;
    /* width:50%; */
}

.add-business-link, .see-more-link {
    color: #007bff;
    text-decoration: none;
    display: block;
    margin-top: 10px;
    text-align: center;
}

.clear {
  clear:both;
}

.featured-heading, .direct-sales-heading, .crypto-heading, .health-heading, .travel-heading, .paying-apps-heading, .gold-silver-heading {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 3px solid;
    padding-bottom: 15px;
}

.featured-heading {
    font-size: 2.5em;
    color: #ff6600;
    border-bottom-color: #ff6600;
}
.direct-sales-heading {
    color: #00aaff;
    border-bottom-color: #00aaff;
}
.crypto-heading{
    color: #a020f0;
    border-bottom-color: #a020f0;
}
.health-heading{
    color: #008000;
    border-bottom-color: #008000;
}
.travel-heading{
    color: #ff8c00;
    border-bottom-color: #ff8c00;
}
.paying-apps-heading{
    color: #4b0082;
    border-bottom-color: #4b0082;
}
.gold-silver-heading{
    color: #AA6C39;
    border-bottom-color: #AA6C39;
}
.side-by-side {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.side-by-side section {
  width: 48%;
  box-sizing: border-box;
}

.linksOther{
  text-align:left;
  list-style-type: square;
  margin-left:15px;
}

footer {
    background-color: #f0f0f0; /* Light gray background */
    /* width: 100%; */
    padding: 20px;
    text-align: center;
    margin-top: auto; /* Push footer to the bottom */
}


footer h3 {
    color: #555;
    margin-bottom: 10px;
    text-align: center;
}

@media (max-width: 767px) {
  nav ul {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  nav.mobile-menu {
    display: none;
  }
  .side-by-side {
    flex-direction: column;
  }        
  .side-by-side section {
    width: 100%;
  }
}

@media (min-width: 768px) {
    .menu-toggle{
display: none;
    }
    nav.mobile-menu{
display: none !important;
    }
    nav ul{
display: flex;
    }
}
