* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    
}
body {
    background-color: #fff;
    color: #000;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

p {
      font-size: 20px;
    
}

.logo {
    font-size: 24px;
    font-weight: bold;
    width: 300px;
    margin-left: 25px;
}
.logo span {
    display: block;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #000;
  
}
.nav_link{
      margin-top: 30px;
      margin-right: 25px;
}

 .hero {
      position: relative;
    }

    .hero img {
      width: 100%;
      height: auto;
      display: block;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
     
      text-align: center;
    }

    .hero-text h1 {
      font-size: 95px; /* You can increase it as needed */
      font-weight: bold;
    }

    @media (max-width: 768px) {
      .hero-text h1 {
        font-size: 32px;
      }
    }


.services, .audience, .coming-soon {
    text-align: center;
    padding: 40px 20px;
}
.features, .groups {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 20px;
}
.feature, .groups div {
    max-width: 300px;
}
.feature img {
    height: 40px;
    margin-bottom: 10px;
}
.coming-soon input[type="email"] {
    margin-top: 10px;
    padding: 10px;
    width: 300px;
    max-width: 90%;
}
.feature h3 {
  white-space: nowrap;
}
.h2_b {
      
    font-size: 60px;    
}
.feature h3 {
    font-weight: bold;
}
.audience h3 {
    font-weight: bold;
}
.pb-10{
    padding-bottom: 10px;
}
.pb-20{
    padding-bottom: 20px;
}


section h3,
section p {
  text-align: left;
}

.pl-50 {
   padding-left: 50px !important;
}
@media (max-width: 768px) {
    .pl-50 {
        padding-left: 40px !important;
    }
    .feature {
        padding-bottom: 40px;
    }
    nav {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    .nav_link {
        margin-top: 0px;
         margin-right: 0px;
    }
    .features, .groups {
        flex-direction: column;
        align-items: center;
    }

    .h2_b {
       font-size: 1.5em;
       font-weight: bold;
    }
    .logo {
        margin-top: 15px;
        width: 130px;
        margin-left: 0px;
    }
}
