* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
}
h1{
  font-size: 34px !important;
}
h2{
  font-size: 30px !important;
}
h3{
  font-size: 24px !important;
}
p, button, a , span{
  font-size: 18px !important;
}


.header{
  width: 100%;
  padding: 15px 20px;
  background-color: #4b1e66;
  color: #fff;
  
}
.container{
  max-width: 1200px;
  margin: 0px auto;
}
.header-wrap{
    display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav{
  display: flex;
  gap: 20px;
}

.nav a{
  color: white;
  text-decoration: none;
  font-size: 16px;
 margin-left: 20px;

}

.menu-icon{
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 768px){

  .nav{
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #71309a;
    padding: 20px 25px;
    display: none;
    flex-direction: column;

    align-items: flex-end;   
  }

  .nav.active{
    display: flex;
  }

  .nav a{
    width: 100%;
    text-align: center;     
    padding: 12px 0;
  }

  .menu-icon{
    display: block;
  }
}

.info-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 40px auto;
  
}
.info-sections .section-lefts{
  width: 49%;
}
 .info-sections .section-rights {
  width: 49%;
  
 }
 .info-sections .section-rights h2{
    color: #4B1E66 ;
    
 }
  .section-rights p {
    width: 550px;
  }
  .section-rights strong {
    color: #d13520;
    text-decoration: underline #421A5B;
  }
.section-lefts img{
  border-radius:20px;
  width: 100%;
}

@media (max-width: 768px) {
  .info-sections {
    flex-direction: column;  
    align-items: center;
    text-align: center;
  }

  .section-lefts,
  .section-rights {
    width: 100%;
  }

  .section-lefts img {
    max-width: 200px;
    margin-bottom: 20px;

  }

  .section-rights h2 {
    font-size: 22px;
    font-weight: bolder;
  }

  .section-rights p {
    font-size: 14px;

justify-self: center;

   width:300px;
 
  }
}

.banner {
  width: 100%;
  text-align: center;
  padding: 20px 15px;
}

.banner h1 {
  font-size: 35px;
  color: #71309a;
  font-weight: 700;
}

.banner img {
  display: block;
  margin: 15px auto;
  max-width: 100%;
  border-radius: 30px;
}

.banner p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
}


.app-table {
  max-width: 1200px;
  margin: 20px auto;
  border-radius: 15px;
  overflow: hidden;
  font-family: Arial, sans-serif;
  margin-top: 200px;
  
}

.app-table .row {
  display: grid;
  grid-template-columns: 1fr 1fr
  padding: 18px 25px;
  background: linear-gradient(90deg,#6A0DAD,#8E44AD);
  
}

.app-table .row:nth-child(even) {
  background: linear-gradient(90deg,#a02bf4 , #662098);
}

.app-table .label {
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
}

.app-table .value {
  font-size: 18px;
  color: #ffffff;
}

.app-table a {
  color: #c7a7ee;
  font-weight: 700;
  text-decoration: underline;
}

.contant h2 {
  position: relative;
  font-size: 25px;
  font-weight: bold;
  padding-left: 25px;
  margin-top: 30px;
  color: #421a5b;
}

.contant h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 80%;
  background-color: #4c1f68;
  border-radius: 10px;
  
}

.contant p {
  font-size: 15px;
  margin-top: 10px;
  line-height: 1.7;
  width: 700px;
 
}

@media (max-width: 896px){
  .contant{
    margin-left:1px;
  }
  .contant p{
    width: 400px;
    
  }

 

}
.feature-list {
  list-style: disc;
  padding-left: 40px;
  margin-top: 20px;
}

.feature-list li {
  font-size: 18px;
  color: #0d0d0d;
  margin-bottom: 14px;
  line-height: 1.10;
}

.faq-container {
  width: 999px;
  max-width: 100%;
  padding: 30px 15px;
  justify-content: center;
  justify-self: center;
  align-items: center;
}

.faq-container h2 {
  font-size:20px;
  text-align: center;
  margin-bottom: 25px;
}
.container h2{
  color: #421a5b;
  font-weight: 600;
  
}

.faq-item {
  width: 100%;
  background: #fff;
  border: 1px solid #4c1f68;
  border-left: 5px solid #4b1e66;
  border-radius: 5px;
  padding: 15px;

  margin-bottom: 15px;
}
.faq-item h2{
  color: #421a5b;
}
.faq-question {
  font-size: 16px;
  font-weight: bold;
  font-size:25px;
  
}


.faq-answer {
  font-size: 14px;
  margin-top: 5px;
}


.site-footer {
  width: 100%;
  background-color: #4c1f68;
  color: #ffffff;
  text-align: center;
  padding: 20px 10px;
}

.site-footer p {
  font-size: 13px;
}

.footer-link {
  color: #ffffff;
  text-decoration: underline;
}

.download-button, .language_btn {
    background-color: #491e64;
    padding: 15px 20px;
    font-size: 22px;
    box-shadow: 0px 0.04831rem 0.09662rem 0px rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: #ffffff;
    margin: 10px 0;
    text-decoration: none;
margin-left: 200px;
    
}
.btn-column {
  display: flex;
  flex-direction: column;
  gap: 22px;                
  max-width: 600px;         
  margin: auto;  
 justify-self: center;   
  
}

.green-btn {
    color: #fff;
    text-align: center;
    background: #421a5b;
    border-radius: 12px;
    width: 250px;
    padding: 15px 0px;
    text-decoration: none;
    box-shadow: 0 4px 8px #00000026;
}

.contant-area{
  margin-left: 100px;
}
.contant-area h1{
  font-weight: 700;
  font-size: 27px;
  color: #71309a;
}
.contant-area p{
  font-size: 18px;
  width:850px;
}
@media (max-width: 896px){
  .contant-area{
    margin-left:30px;
  }
  .contant-area p{
    width:300px;
  }
}

 