* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
}

  /**********************/


  .topbarr p {text-align: center;color: #ffffff;font-size: 16px;}

  /* banner */


.banner {
    background-image: url('img/bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 50px;
    color: #000;
    height: 400px;
    display: flex;
    align-items: center;
}

.content {
    text-align: left;
}

.content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
}

.content p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
}

.logo {
    margin-top: 20px;
}

.logo img {
    width: 120px;
}

@media (max-width: 1024px) {
    .banner {
        flex-direction: column;
        height: auto;
    }

    .content h1 {
        font-size: 2rem;
    }

    .content p {
        font-size: 1rem;
    }

    .logo img {
        width: 100px;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .content h1 {
        font-size: 1.8rem;
    }

    .content p {
        font-size: 0.9rem;
    }

    .logo img {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 1.5rem;
    }

    .content p {
        font-size: 0.8rem;
    }

    .logo img {
        width: 70px;
    }
}
  /*end Banner*/

  .main-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1100px; /* Updated to match the width from the image */
    margin: 0 auto;
    padding: 0 40px; /* Padding on the left and right to match the spacing */
    background-color: #fff;
    padding-top: 50px;
}

.content-section {
    flex: 1;
    padding-right: 20px;
}

.content-section h1 {
    font-size: 24px;
    color: #000;
    margin-bottom: 10px;
}

.watch-video {
    display: inline-block;
    color: #0056b3;
    text-decoration: none;
    margin-bottom: 20px;
}

.watch-video i {
    margin-right: 5px;
}

.support h2 {
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
}

.support ul {
    list-style-type: disc;
    margin-left: 20px;
}

.support ul li {
    margin-bottom: 10px;
}

.complete-features {
    color: #0056b3;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.help-sidebar {
    width: 300px;
    background-color: #F1F1F2;
    padding: 20px;
    color: #2b2b2b;
    flex: 0 0 300px;
}

.help-sidebar h2 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
}

.help-option {
    margin-bottom: 20px;
    border-top: solid 1px #131313;
    padding-top: 20px;
    padding-bottom: 20px;
}

.help-option h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.help-option p {
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    background-color: #0046be;
    color: #fff;
    font-size: 15px;
    vertical-align: middle;
    align-items: center;
    border-radius: 4px;
    border-style: solid;
    border-width: 0;
    display: inline-flex;
    font-size: 15px;
    font-weight: 600;
    height: 35px;
    justify-content: center;
    padding-left: 28px;
    padding-right: 28px;
    transition: all .3s ease-out 0s;
}

.btn:hover {
    background-color: #004494;
}

@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        padding: 0 20px; /* Reduce padding on smaller devices */
    }

    .help-sidebar {
        width: 100%;
      
    }

    .content-section {
        padding-right: 0;
    }
}

/* image grid */

.main-container-2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
}

.content-box {
    width: 30%;
    margin: 10px 0;
    text-align: center;
}

.content-box img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.content-box h3 {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
}

.content-box p {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.content-box a {
    color: #0056b3;
    text-decoration: none;
}

.content-box a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .content-box {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* model window */

/* Custom Modal Styles */
.modal-custom {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 81%);
    z-index: 1000;
    padding-top: 30px;
  }
  
  .modal-dialog-custom {
    margin: 4% auto;
    width: 500px;
    background-color: white;
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 0 25px -8px #555;
    position: relative;
  }
  
  .modal-content-custom {
    padding: 20px;
  }
  
  .close-btn-custom {
    position: absolute;
    color: #e74c3c;
    background-color: #fff;
    font-size: 28px;
    text-shadow: none;
    line-height: 33px;
    height: 33px;
    width: 33px;
    opacity: 1;
    border-radius: 50%;
    box-shadow: 0 0 5px #555;
    position: absolute;
    left: auto;
    right: -5px;
    top: -5px;
    z-index: 1;
    transition: all 0.3s;
    padding-left: 8px;
  }
  
  .close-btn-custom:hover {
    background-color: #e74c3c;
    color: white;
  }
  
  .description {
    color: #05711e;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    margin: 5px 0;
  }
  
  /* Button */
  .btn-get-custom {
    font-weight: 700;
    width: 180px;
    background-color: black;
    padding: 12px;
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    display: inline-block;
  }
  
  .btn-get-custom:hover {
    background-color: #ffc107;
    color: black;
  }
  
  /* Responsive */
  @media screen and (max-width: 768px) {
    .modal-dialog-custom {
      width: 400px;
    }
  }
  
  @media screen and (max-width: 576px) {
    .modal-dialog-custom {
      width: auto;
      margin: 20px;
    }
  }