*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#d7dde0;
}
h1, h2, h3{
    color: #000;
    font-weight: 700;
}
/* Header */

.logo{
    width: 100px;
}
 .clear{
    background-color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
 }
 .rules{
    background-color: #9f0101;
    color: #fff;
    padding: 5px 10px;
    border: none;
    border-radius: 10px;
}
    .login, .signup {
      background-color: #343435;
      border: 1px solid #c10930;
      color: #fff;
      font-weight: 600;
      padding: 6px 18px;
      margin-left: 10px;
      border-radius: 5px;
    }
/* header */

/* Menu */

.menu-bar{
    background:#2f3136;
    display:flex;
}

.menu-bar a{
    color:#fff;
    text-decoration:none;
    padding:5px 15px;
    display:flex;
    flex-direction:column;
    align-items:center;
    font-size: 12px;
}
.menu-bar img{
    width: 20px;
}
.menu-bar a.active{
    background:#d60035;
}

/* Layout */

.main-wrapper{
    display:flex;
}

.left-banner{
    width:20%;
}


.right-content{
    width:80%;
    padding:15px;
}

.maroon-strip{
    height:30px;
    background:#8c0020;
    margin-bottom:3px;
}
.maroon-strip img{
    width: 20px;
    margin-left: 10px;
}
/* Section */

.section-title{
    color:#fff;
    font-size: 15px;
    font-weight:bold;
    padding:10px 20px;
    margin-bottom:10px;
}
.section-title img{
 width: 20px;
}
.red{
    background:#c4002b;
}

.green{
    background:#0f8f08;
    margin-top:15px;
}

/* Provider Grid */

.provider-grid{
    display:flex;
    overflow-x:auto;
    overflow-y:hidden;
    gap:2px;
    white-space:nowrap;
    margin-bottom: 3px;
}

.provider-grid::-webkit-scrollbar{
   display: none;
}

.provider-card{
    flex:0 0 auto;
    width:140px; /* mobile width */
}

.provider-card img{
    width:100%;
    display:block;
}
.faq-section {
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
  }

  .faq-section h4 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 25px;
    color: #000;
    font-weight: 700;
  }

  .faq-item {
    background: #f9f9f9;
    margin: 15px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .faq-question {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
     background-color: #8c0020;
    color: white;
  }

  .faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 18px;
  }

  .faq-question.active::after {
    content: '-';
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #000;
    padding: 0 20px;
  }

  .faq-answer p {
    padding: 15px 0;
    margin: 0;
    color: #fff;
  }

  /* footer */
  footer {
      background: #000;
      color: #ccc;
      padding: 50px 0 20px;
      font-family: "Poppins", sans-serif;
    }

    .footer-logo img {
      max-width: 160px;
      margin-bottom: 15px;
    }

    .footer-logo p {
      color: #ccc;
      font-size: 14px;
      line-height: 1.7;
    }

    .footer-title {
      color: #fff;
      font-weight: 600;
      margin-bottom: 20px;
      font-size: 18px;
    }

    .footer-links ul {
      list-style: none;
      padding: 0;
    }

    .footer-links ul li {
      margin-bottom: 10px;
    }

    .footer-links ul li a {
      color: #ccc;
      text-decoration: none;
      font-size: 14px;
      transition: 0.3s;
    }

    .footer-links ul li a:hover {
      color: #d4af37;
    }

    .social-icons a {
      width: 40px;
      height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: #fff;
      margin-left: 10px;
      font-size: 18px;
      transition: 0.3s;
    }

    .social-icons a.telegram {
      background: #229ED9;
    }

    .social-icons a.instagram {
      background: #E4405F;
    }

    .social-icons a:hover {
      opacity: 0.8;
    }

    .footer-bottom {
      border-top: 1px solid #444;
      margin-top: 30px;
      padding-top: 20px;
    }

    .license-section {
      display: flex;
      align-items: center;
      margin-top: 30px;
      border-top: 1px solid #444;
      padding-top: 20px;
    }

    .license-section img {
      max-width: 150px;
      margin-right: 20px;
    }

    .disclaimer {
      font-size: 13px;
      color: #bbb;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .license-section {
        flex-direction: column;
        text-align: center;
      }

      .license-section img {
        margin-bottom: 15px;
      }
    }
    /* footer */
      /*whatsaap*/
 .whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 25px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 10px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-family: Arial, sans-serif;
  text-decoration: none;

  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.05);
}
.whatsapp-float span {
font-size: 15px;
}

  /*whatsaap end*/ 
    @media only screen and (max-width: 476px){
            .sack{
        display: none;
    }
    .left-banner{
        display: none;
    }
    .right-content {
        width: 100%;
    }
    .right-content {
    padding: 5px;
}
    .faq-section{
        padding: 10px;
      }
      p{
        text-align: justify;
      }
    }
