* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header {
  position: sticky;
  top: 0;
  z-index: 9999;

  width: 100%;
  background: #2563eb;
  padding: 16px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar.active {
  display: flex;
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  background: #2563eb;
  flex-direction: column;
  padding: 20px;
  z-index: 9998;
}
.logo {
  color: white;
  font-size: 28px;
  font-weight: 700;
}

.logo span {
  color: #dbeafe;
}
.logo{
    color:#ffffff;
    font-size:28px;
    font-weight:800;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:10px;
    transition:0.3s;
}

.logo:hover{
    opacity:0.9;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin: 0 18px;
  font-size: 18px;
  font-weight: 500;
}

.download-btn {
  background: white;
  color: #2563eb;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
}

.menu-btn {
  display: none;
  background: white;
  color: #2563eb;
  border: none;
  padding: 8px 12px;
  font-size: 24px;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .navbar,
  .download-btn {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .navbar.active {
    display: flex;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: #2563eb;
    flex-direction: column;
    padding: 20px;
  }

  .navbar.active a {
    margin: 12px 0;
  }
}




.main-hero{
  min-height: 620px;
  background: linear-gradient(135deg,#2f5df5,#2449d8,#2b39b6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 20px;
}

.main-hero-box{
  max-width: 1200px;
  width: 100%;
}

.main-hero-box h1{
  color: white;
  font-family: Arial, sans-serif;
  font-size: 72px;
  line-height: 1.1;
  margin: 0 0 25px;
}

.main-hero-box p{
  color: #eef2ff;
  font-family: Arial, sans-serif;
  font-size: 26px;
  line-height: 1.5;
  max-width: 1050px;
  margin: 0 auto 45px;
}

.main-hero-btn{
  display: inline-block;
  background: #f8fafc;
  color: #2563eb;
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  padding: 20px 45px;
  border-radius: 14px;
}



.about-section{
    background: #f5f5f5;
    padding: 80px 20px;
}

.about-container{
    max-width: 1300px;
    margin: 0 auto;
}

.about-container p{
    font-size: 22px;
    line-height: 2;
    color: #243b5a;
    font-family: Arial, sans-serif;
}

.about-container{
    max-width: 1100px;
}

.equalizer-btn{
    display: inline-block;
    margin-top: 25px;

    background: #2563eb;
    color: white !important;

    text-decoration: none;

    padding: 12px 25px;

    border-radius: 30px;

    font-size: 18px;
    font-weight: 600;
}





/* TABLE OF CONTENTS SECTION */

.toc-section{
    background:#f3f4f6;
    padding:60px 20px;
    display:flex;
    justify-content:center;
}

.toc-card{
    width:100%;
    max-width:850px;

    background:#ffffff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.toc-header{
    background:linear-gradient(90deg,#2563eb,#2449d8);
    padding:22px 30px;
}

.toc-header h2{
    color:#fff;
    font-size:32px;
    font-weight:700;
    font-family:Arial,sans-serif;
}

.toc-body{
    padding:10px 30px;
}

.toc-item{
    display:flex;
    align-items:center;
    gap:15px;

    height:65px;

    text-decoration:none;

    color:#172554;

    font-size:20px;
    font-weight:600;

    font-family:Arial,sans-serif;

    border-bottom:1px solid #e5e7eb;

    transition:.3s;
}

.toc-item:last-child{
    border-bottom:none;
}

.toc-item:hover{
    color:#2563eb;
    padding-left:8px;
}

/* MOBILE */

@media(max-width:768px){

    .toc-card{
        max-width:95%;
    }

    .toc-header h2{
        font-size:26px;
    }

    .toc-item{
        font-size:17px;
        height:58px;
    }

}




.features-intro{
  background:#ffffff;
  padding:90px 20px;
  text-align:center;
}

.features-intro-container{
  width:100%;
  max-width:1050px;
  margin:0 auto;
}

.features-intro h2{
  font-family:Arial,sans-serif;
  color:#111827;
  font-size:44px;
  font-weight:800;
  line-height:1.2;
  margin-bottom:35px;
}

.features-intro p{
  font-family:Arial,sans-serif;
  color:#334155;
  font-size:22px;
  line-height:1.8;
  margin:0 auto;
  max-width:980px;
}

.category-badge{
  display:inline-block;
  margin-top:12px;
  background:#2563eb;
  color:#ffffff;
  text-decoration:none;
  font-family:Arial,sans-serif;
  font-size:20px;
  font-weight:700;
  padding:8px 18px;
  border-radius:30px;
}

@media(max-width:768px){
  .features-intro{
    padding:60px 18px;
  }

  .features-intro h2{
    font-size:32px;
  }

  .features-intro p{
    font-size:18px;
    line-height:1.7;
  }

  .category-badge{
    font-size:16px;
  }
}




.feature-cards{
    background:#f5f5f5;
    padding:80px 20px;
}

.feature-grid{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:40px;
}

.feature-card{
    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-8px);
}

.icon{
    font-size:42px;
    margin-bottom:25px;
}

.blue{
    color:#2563eb;
}

.green{
    color:#16a34a;
}

.purple{
    color:#9333ea;
}

.orange{
    color:#ea580c;
}

.pink{
    color:#db2777;
}

.indigo{
    color:#4f46e5;
}

.feature-card h3{
    font-size:24px;
    color:#111827;
    margin-bottom:18px;
    font-family:Arial,sans-serif;
}

.feature-card p{
    font-size:20px;
    line-height:1.8;
    color:#475569;
    font-family:Arial,sans-serif;
}

.badge{
    display:inline-block;

    margin-top:15px;

    background:#2563eb;
    color:#fff;

    padding:8px 16px;

    border-radius:30px;

    font-size:16px;
    font-weight:600;
}





/* INSTALLATION SECTION */

.installation-section{
    background:#f5f5f5;
    padding:100px 20px;
    text-align:center;
}

.installation-container{
    max-width:1000px;
    margin:0 auto;
}

.installation-container h2{
    font-size:56px;
    font-weight:800;
    color:#111827;
    margin-bottom:35px;
    font-family:Arial,sans-serif;
}

.installation-container p{
    font-size:24px;
    line-height:1.9;
    color:#475569;
    max-width:950px;
    margin:0 auto;
    font-family:Arial,sans-serif;
}

.installation-container p a{
    color:#2563eb;
    text-decoration:none;
    font-weight:600;
}

.install-btn{
    display:inline-block;
    margin-top:50px;

    background:#22c55e;
    color:#fff;

    text-decoration:none;

    padding:22px 50px;

    border-radius:14px;

    font-size:28px;
    font-weight:700;

    transition:.3s;
}

.install-btn:hover{
    background:#16a34a;
    transform:translateY(-4px);
}


@media(max-width:768px){

    .installation-container h2{
        font-size:36px;
    }

    .installation-container p{
        font-size:18px;
        line-height:1.7;
    }

    .install-btn{
        width:100%;
        max-width:350px;
        font-size:20px;
        padding:18px 25px;
    }

}






.install-step{
    padding:80px 20px;
    background:#f5f5f5;
}

.step-card{
    max-width:1200px;
    margin:auto;

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* IMAGE */

.step-card img{
    width:100%;
    display:block;
}

/* CONTENT */

.step-content{
    display:flex;
    gap:30px;

    padding:35px;
}

.step-number{
    width:60px;
    height:60px;

    min-width:60px;

    background:#2563eb;

    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;
    font-weight:700;
}

.step-text h3{
    font-size:42px;
    color:#111827;
    margin-bottom:20px;
    font-family:Arial,sans-serif;
}

.step-text p{
    font-size:24px;
    line-height:1.8;
    color:#475569;
    font-family:Arial,sans-serif;
}

.step-badge{
    display:inline-block;

    margin-top:20px;

    background:#2563eb;
    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:18px;
    font-weight:600;
}



@media(max-width:768px){

.step-content{
    flex-direction:column;
}

.step-text h3{
    font-size:30px;
}

.step-text p{
    font-size:18px;
}

}





.install-step{
    padding:80px 20px;
    background:#f5f5f5;
}

.step-card{
    max-width:1100px;
    margin:auto;

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* IMAGE */

.step-card img{
    width:100%;
    display:block;
}

/* CONTENT */

.step-content{
    padding:35px;
    display:flex;
    gap:20px;
}

.step-number{
    width:55px;
    height:55px;

    min-width:55px;

    background:#2563eb;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;
    font-weight:700;
}

.step-info{
    flex:1;
}

.step-info h3{
    font-size:38px;
    color:#111827;
    margin-bottom:18px;
    font-family:Arial,sans-serif;
}

.step-info p{
    font-size:22px;
    line-height:1.8;
    color:#475569;
    font-family:Arial,sans-serif;
}

.step-tag{
    display:inline-block;
    margin-top:20px;

    background:#2563eb;
    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:16px;
    font-weight:600;
}





/* USING EQUALIZER APO */

.usage-section{
    background:#f5f5f5;
    padding:100px 20px;
    text-align:center;
}

.usage-container{
    max-width:1100px;
    margin:0 auto;
}

.usage-container h2{
    font-size:64px;
    font-weight:800;
    color:#111827;
    font-family:Arial,sans-serif;
    margin-bottom:40px;
}

.usage-container p{
    max-width:1000px;
    margin:0 auto;

    font-size:24px;
    line-height:1.8;

    color:#475569;

    font-family:Arial,sans-serif;
}

@media(max-width:768px){

    .usage-section{
        padding:70px 20px;
    }

    .usage-container h2{
        font-size:38px;
        margin-bottom:25px;
    }

    .usage-container p{
        font-size:18px;
        line-height:1.7;
    }

}




.guide-step{
    max-width:1100px;
    margin:80px auto;

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* IMAGE */

.guide-step img{
    width:100%;
    display:block;
}

/* CONTENT */

.guide-content{
    padding:35px;
}

.guide-content p{
    font-size:22px;
    line-height:1.8;
    color:#475569;
    font-family:Arial,sans-serif;
}

.guide-badge{
    display:inline-block;

    margin-top:15px;

    background:#2563eb;
    color:white;

    padding:8px 18px;

    border-radius:30px;

    font-size:16px;
    font-weight:600;
}




/* BASIC AMPLIFIER */

.basic-amplifier{
    background:#f5f5f5;
    padding:100px 20px;
}

.basic-header{
    text-align:center;
    max-width:1000px;
    margin:0 auto 50px;
}

.basic-header h2{
    font-size:48px;
    font-weight:800;
    color:#111827;
    margin-bottom:20px;
    font-family:Arial,sans-serif;
}

.basic-header p{
    font-size:20px;
    line-height:1.8;
    color:#475569;
    font-family:Arial,sans-serif;
}

.amplifier-card{
    max-width:900px;
    margin:auto;

    background:#ffffff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.amplifier-card img{
    width:100%;
    display:block;
}

.amplifier-content{
    padding:25px 30px;
}

.amplifier-content p{
    font-size:18px;
    line-height:1.8;
    color:#475569;
    font-family:Arial,sans-serif;
}

.amplifier-badge{
    display:inline-block;

    margin-top:15px;

    background:#2563eb;
    color:#ffffff;

    padding:8px 16px;

    border-radius:30px;

    font-size:15px;
    font-weight:600;
}


@media(max-width:768px){

    .basic-header h2{
        font-size:34px;
    }

    .basic-header p{
        font-size:17px;
    }

    .amplifier-content p{
        font-size:16px;
    }

}





.amplifier-step{
  background:#f5f5f5;
  padding:70px 20px;
}

.amplifier-step-card{
  max-width:1100px;
  margin:0 auto;
  background:#ffffff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.amplifier-step-card img{
  width:100%;
  display:block;
}

.amplifier-step-content{
  padding:28px 35px;
}

.amplifier-step-content p{
  font-family:Arial,sans-serif;
  font-size:18px;
  line-height:1.8;
  color:#334155;
  margin:0;
}

.amplifier-step-badge{
  display:inline-block;
  margin-top:12px;
  background:#2563eb;
  color:#ffffff;
  padding:6px 14px;
  border-radius:30px;
  font-family:Arial,sans-serif;
  font-size:15px;
  font-weight:700;
}

@media(max-width:768px){
  .amplifier-step{
    padding:45px 16px;
  }

  .amplifier-step-content{
    padding:22px;
  }

  .amplifier-step-content p{
    font-size:16px;
  }
}




/* TUTORIAL STEP */

.tutorial-step{
    background:#f5f5f5;
    padding:70px 20px;
}

.tutorial-card{
    max-width:1100px;
    margin:auto;

    background:#fff;

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.tutorial-card img{
    width:100%;
    display:block;
}

.tutorial-content{
    padding:25px 30px;
}

.tutorial-content p{
    font-size:18px;
    line-height:1.8;
    color:#475569;
    font-family:Arial,sans-serif;
}




.guide-card-section{
    padding:70px 20px;
    background:#f5f5f5;
}

.guide-card{
    max-width:1100px;
    margin:0 auto;

    background:#ffffff;

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.guide-card img{
    width:100%;
    display:block;
}

.guide-card-content{
    padding:28px 35px;
}

.guide-card-content p{
    margin:0;

    font-family:Arial,sans-serif;
    font-size:18px;
    line-height:1.8;

    color:#475569;
}


@media(max-width:768px){

    .guide-card-content{
        padding:20px;
    }

    .guide-card-content p{
        font-size:16px;
        line-height:1.7;
    }

}





.device-step-section{
  background:#f5f5f5;
  padding:70px 20px;
}

.device-step-card{
  max-width:1100px;
  margin:0 auto;
  background:#ffffff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.device-step-card img{
  width:100%;
  display:block;
}

.device-step-content{
  padding:28px 35px;
}

.device-step-content p{
  margin:0;
  font-family:Arial,sans-serif;
  font-size:18px;
  line-height:1.8;
  color:#475569;
}

.device-step-badge{
  display:inline-block;
  margin-top:12px;
  background:#2563eb;
  color:#ffffff;
  padding:6px 14px;
  border-radius:30px;
  font-family:Arial,sans-serif;
  font-size:15px;
  font-weight:700;
}

@media(max-width:768px){
  .device-step-section{
    padding:45px 16px;
  }

  .device-step-content{
    padding:20px;
  }

  .device-step-content p{
    font-size:16px;
  }
}





.amplify-step{
    background:#f5f5f5;
    padding:70px 20px;
}

.amplify-card{
    max-width:1100px;
    margin:0 auto;

    background:#ffffff;

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.amplify-card img{
    width:100%;
    display:block;
}

.amplify-content{
    padding:28px 35px;
}

.amplify-content p{
    margin:0;

    font-family:Arial,sans-serif;
    font-size:18px;
    line-height:1.9;

    color:#475569;
}

@media(max-width:768px){

    .amplify-step{
        padding:45px 16px;
    }

    .amplify-content{
        padding:20px;
    }

    .amplify-content p{
        font-size:16px;
        line-height:1.7;
    }

}






.final-step{
    background:#f5f5f5;
    padding:70px 20px;
}

.final-step-card{
    max-width:1100px;
    margin:0 auto;

    background:#ffffff;

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.final-step-card img{
    width:100%;
    display:block;
}

.final-step-content{
    padding:28px 35px;
}

.final-step-content p{
    margin:0;

    font-family:Arial,sans-serif;
    font-size:18px;
    line-height:1.8;

    color:#475569;
}

.final-badge{
    display:inline-block;

    margin-top:12px;

    background:#2563eb;
    color:#ffffff;

    padding:6px 14px;

    border-radius:30px;

    font-size:15px;
    font-weight:700;

    font-family:Arial,sans-serif;
}

@media(max-width:768px){

    .final-step{
        padding:45px 16px;
    }

    .final-step-content{
        padding:20px;
    }

    .final-step-content p{
        font-size:16px;
    }

}




.save-step{
    background:#f5f5f5;
    padding:70px 20px;
}

.save-step-card{
    max-width:1100px;
    margin:0 auto;

    background:#ffffff;

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.save-step-card img{
    width:100%;
    display:block;
}

.save-step-content{
    padding:28px 35px;
}

.save-step-content p{
    margin:0;

    font-family:Arial,sans-serif;
    font-size:18px;
    line-height:1.9;

    color:#475569;
}

@media(max-width:768px){

    .save-step{
        padding:45px 16px;
    }

    .save-step-content{
        padding:20px;
    }

    .save-step-content p{
        font-size:16px;
        line-height:1.7;
    }

}




.troubleshooting-section{
    background:#f5f5f5;
    padding:100px 20px;
    text-align:center;
}

.troubleshooting-container{
    max-width:1000px;
    margin:0 auto;
}

.troubleshooting-container h2{
    font-size:52px;
    font-weight:800;
    color:#111827;
    margin-bottom:30px;
    font-family:Arial,sans-serif;
}

.troubleshooting-container p{
    font-size:22px;
    line-height:1.9;
    color:#475569;
    font-family:Arial,sans-serif;
}

.troubleshooting-container a{
    color:#2563eb;
    text-decoration:none;
    font-weight:600;
}

.troubleshooting-container a:hover{
    text-decoration:underline;
}


@media(max-width:768px){

    .troubleshooting-section{
        padding:70px 20px;
    }

    .troubleshooting-container h2{
        font-size:34px;
    }

    .troubleshooting-container p{
        font-size:17px;
        line-height:1.8;
    }

}




.video-tutorial{
    padding:100px 20px;
    background:#ffffff;
}

.video-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.video-container h2{
    font-size:52px;
    font-weight:800;
    color:#111827;
    margin-bottom:20px;
}

.video-container p{
    font-size:22px;
    color:#475569;
    line-height:1.8;
    margin-bottom:40px;
}

.video-box{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.1);
}

.video-box iframe{
    width:100%;
    height:650px;
    border:none;
}





.developer-credits{
    background:#f5f5f5;
    padding:100px 20px;
}

.credits-container{
    max-width:1000px;
    margin:0 auto;
    text-align:center;
}

.credits-container h2{
    font-size:52px;
    font-weight:800;
    color:#111827;
    margin-bottom:30px;
    font-family:Arial,sans-serif;
}

.credits-container p{
    font-size:21px;
    line-height:1.9;
    color:#475569;
    margin-bottom:25px;
    font-family:Arial,sans-serif;
}

.credits-badge{
    display:inline-block;
    margin-top:10px;
    padding:10px 22px;
    background:#2563eb;
    color:#ffffff;
    border-radius:30px;
    font-size:16px;
    font-weight:700;
    font-family:Arial,sans-serif;
}




.footer{
    background:#0f172a;
    color:#ffffff;
    padding:80px 20px 0;
}

.footer-container{
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:
    2fr 1fr 1fr 1fr;

    gap:50px;
}

.footer-box h3{
    font-size:32px;
    margin-bottom:20px;
}

.footer-box h4{
    font-size:22px;
    margin-bottom:20px;
}

.footer-box p{
    color:#cbd5e1;
    line-height:1.8;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    color:#cbd5e1;
    text-decoration:none;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:#3b82f6;
}

.socials{
    display:flex;
    gap:15px;
    margin-top:15px;
}

.socials a{
    color:white;
    text-decoration:none;
}

.footer-bottom{
    margin-top:60px;
    border-top:1px solid #334155;
    padding:25px 0;
    text-align:center;
}

.footer-bottom p{
    color:#94a3b8;
}






.footer-contact {
  max-width: 300px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #ffffff;
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.3;
  transition: 0.2s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.contact-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.social-link {
  flex: 1;
  text-align: center;
  padding: 10px 12px;
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s ease;
}

.social-link:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.fb {
  background: #1877f2;
}

.yt {
  background: #ff0000;
}

@media (max-width: 768px) {
  .footer-contact {
    max-width: 100%;
  }

  .footer-socials {
    flex-direction: column;
  }
}




.faq-section{
    background:#f5f5f5;
    padding:100px 20px;
}

.faq-container{
    max-width:1000px;
    margin:auto;
}

.faq-container h2{
    text-align:center;
    font-size:52px;
    margin-bottom:50px;
    color:#111827;
    font-family:Arial,sans-serif;
}

.faq-item{
    background:#ffffff;
    margin-bottom:20px;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.faq-question{
    width:100%;
    border:none;
    background:#ffffff;
    padding:25px 30px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    font-size:20px;
    font-weight:700;
    color:#111827;

    cursor:pointer;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:.3s ease;
}

.faq-answer p{
    padding:0 30px 25px;
    color:#475569;
    line-height:1.8;
    font-size:17px;
}

.faq-item.active .faq-answer{
    max-height:200px;
}





.about-page{
    background:#f5f5f5;
    padding:100px 20px;
}

.about-container{
    max-width:1000px;
    margin:0 auto;
    background:#ffffff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.about-container h1{
    font-size:56px;
    color:#111827;
    margin-bottom:25px;
}

.about-container h2{
    font-size:34px;
    color:#111827;
    margin-top:40px;
    margin-bottom:15px;
}

.about-container p{
    font-size:20px;
    line-height:1.9;
    color:#475569;
    margin-bottom:20px;
}

.about-container ul{
    padding-left:25px;
}

.about-container li{
    font-size:19px;
    line-height:2;
    color:#475569;
}





/* CTA SECTION */

.cta-section{
    padding:80px 20px;
    background:#f5f5f5;
}

.cta-box{
    max-width:1200px;
    margin:0 auto;

    background:linear-gradient(
        135deg,
        #2563eb,
        #4338ca
    );

    border-radius:24px;

    text-align:center;

    padding:70px 30px;

    box-shadow:0 15px 35px rgba(37,99,235,.25);
}

.cta-box h2{
    color:#ffffff;

    font-size:52px;
    font-weight:800;

    margin-bottom:20px;

    font-family:Arial,sans-serif;
}

.cta-box p{
    color:#e2e8f0;

    font-size:24px;

    margin-bottom:40px;

    font-family:Arial,sans-serif;
}

.cta-btn{
    display:inline-block;

    background:#ffffff;

    color:#2563eb;

    text-decoration:none;

    padding:20px 45px;

    border-radius:14px;

    font-size:24px;
    font-weight:700;

    transition:.3s;
}

.cta-btn:hover{
    transform:translateY(-4px);
    background:#f8fafc;
}





@media(max-width:768px){

    .cta-box{
        padding:50px 20px;
    }

    .cta-box h2{
        font-size:34px;
    }

    .cta-box p{
        font-size:18px;
    }

    .cta-btn{
        font-size:18px;
        padding:16px 30px;
    }

}




.top-blue-line {
  width: 100%;
  height: 7px;
  background: #2563eb;
}

.breadcrumb-area {
  width: 100%;
  background: #ffffff;
  padding: 18px 0;
  border-bottom: 1px solid #f1f1f1;
}

.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.breadcrumb-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.home-icon {
  width: 20px;
  height: 20px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
}

.breadcrumb-separator {
  color: #9ca3af;
  font-size: 24px;
  line-height: 1;
}

.breadcrumb-current {
  color: #111827;
  font-weight: 500;
}




.contact-hero{
  background:linear-gradient(135deg,#2563eb,#4338ca);
  padding:110px 20px;
  text-align:center;
  color:white;
}

.contact-hero-box{
  max-width:900px;
  margin:0 auto;
}

.contact-hero h1{
  font-family:Arial,sans-serif;
  font-size:64px;
  font-weight:800;
  margin-bottom:20px;
}

.contact-hero p{
  font-family:Arial,sans-serif;
  font-size:22px;
  line-height:1.7;
  color:#e0e7ff;
}

.contact-page{
  background:#f5f5f5;
  padding:90px 20px;
}

.contact-container{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1.4fr;
  gap:40px;
}

.contact-info,
.contact-form{
  background:#ffffff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-info h2{
  font-family:Arial,sans-serif;
  font-size:34px;
  color:#111827;
  margin-bottom:20px;
}

.contact-info p{
  font-family:Arial,sans-serif;
  font-size:18px;
  line-height:1.8;
  color:#475569;
  margin-bottom:25px;
}

.info-box{
  background:#eff6ff;
  padding:16px 18px;
  border-radius:12px;
  margin-bottom:15px;
  font-family:Arial,sans-serif;
  font-size:17px;
  font-weight:700;
}

.info-box a{
  color:#2563eb;
  text-decoration:none;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:16px;
  margin-bottom:18px;
  border:1px solid #d1d5db;
  border-radius:12px;
  font-family:Arial,sans-serif;
  font-size:16px;
  outline:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:#2563eb;
}

.contact-form button{
  width:100%;
  border:none;
  background:#2563eb;
  color:white;
  padding:17px;
  border-radius:12px;
  font-size:18px;
  font-weight:800;
  cursor:pointer;
}

.contact-form button:hover{
  background:#1d4ed8;
}

@media(max-width:768px){
  .contact-hero{
    padding:75px 18px;
  }

  .contact-hero h1{
    font-size:40px;
  }

  .contact-hero p{
    font-size:18px;
  }

  .contact-container{
    grid-template-columns:1fr;
  }

  .contact-info,
  .contact-form{
    padding:25px;
  }
}





.page-breadcrumb {
  width: 100%;
  background: #ffffff;
  border-top: 7px solid #2563eb;
  padding: 17px 0;
  box-sizing: border-box;
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.breadcrumb-home {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-home svg {
  width: 18px;
  height: 18px;
  fill: #2563eb;
}

.breadcrumb-arrow {
  color: #9ca3af;
  font-size: 22px;
  line-height: 1;
}

.breadcrumb-current {
  color: #111827;
  font-weight: 500;
}




.policy-page{
  background:#f5f5f5;
  padding:90px 20px;
}

.policy-container{
  max-width:1000px;
  margin:0 auto;
  background:#ffffff;
  padding:50px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.policy-container h1{
  font-family:Arial,sans-serif;
  font-size:52px;
  color:#111827;
  margin-bottom:25px;
}

.policy-container h2{
  font-family:Arial,sans-serif;
  font-size:30px;
  color:#111827;
  margin-top:35px;
  margin-bottom:12px;
}

.policy-container p{
  font-family:Arial,sans-serif;
  font-size:18px;
  line-height:1.9;
  color:#475569;
  margin-bottom:18px;
}

.last-updated{
  margin-top:35px;
  font-weight:700;
}

@media(max-width:768px){
  .policy-page{
    padding:60px 16px;
  }

  .policy-container{
    padding:28px;
  }

  .policy-container h1{
    font-size:36px;
  }

  .policy-container h2{
    font-size:24px;
  }

  .policy-container p{
    font-size:16px;
  }
}



.page-breadcrumb {
  width: 100%;
  background: #ffffff;
  border-top: 7px solid #2563eb;
  padding: 17px 0;
  box-sizing: border-box;
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.breadcrumb-home {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-home svg {
  width: 18px;
  height: 18px;
  fill: #2563eb;
}

.breadcrumb-arrow {
  color: #9ca3af;
  font-size: 22px;
  line-height: 1;
}

.breadcrumb-current {
  color: #111827;
  font-weight: 500;
}




/* DISCLAIMER HERO */

.disclaimer-hero{
    background:linear-gradient(135deg,#2563eb,#4338ca);
    padding:120px 20px;
    text-align:center;
}

.disclaimer-hero-content{
    max-width:900px;
    margin:auto;
}

.disclaimer-hero h1{
    color:#fff;
    font-size:64px;
    font-weight:800;
    margin-bottom:20px;
    font-family:Arial,sans-serif;
}

.disclaimer-hero p{
    color:#e2e8f0;
    font-size:22px;
    line-height:1.8;
    font-family:Arial,sans-serif;
}

/* DISCLAIMER CONTENT */

.disclaimer-section{
    background:#f5f5f5;
    padding:100px 20px;
}

.disclaimer-container{
    max-width:1000px;
    margin:auto;

    background:#fff;

    padding:50px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.disclaimer-container h2{
    color:#111827;
    font-size:32px;
    margin-top:35px;
    margin-bottom:15px;
    font-family:Arial,sans-serif;
}

.disclaimer-container p{
    color:#475569;
    font-size:19px;
    line-height:1.9;
    font-family:Arial,sans-serif;
}

.contact-box{
    margin-top:25px;

    background:#eff6ff;

    padding:20px;

    border-radius:12px;
}

.contact-box p{
    color:#2563eb;
    font-weight:600;
}

.update-box{
    margin-top:30px;

    font-weight:700;

    color:#111827;
}

/* MOBILE */

@media(max-width:768px){

    .disclaimer-hero{
        padding:80px 20px;
    }

    .disclaimer-hero h1{
        font-size:40px;
    }

    .disclaimer-hero p{
        font-size:18px;
    }

    .disclaimer-container{
        padding:30px;
    }

    .disclaimer-container h2{
        font-size:24px;
    }

    .disclaimer-container p{
        font-size:16px;
    }

}




.terms-hero{
    background:linear-gradient(135deg,#2563eb,#4338ca);
    padding:120px 20px;
    text-align:center;
}

.terms-hero-content{
    max-width:900px;
    margin:auto;
}

.terms-hero h1{
    color:#ffffff;
    font-size:64px;
    font-weight:800;
    margin-bottom:20px;
    font-family:Arial,sans-serif;
}

.terms-hero p{
    color:#e2e8f0;
    font-size:22px;
    line-height:1.8;
    font-family:Arial,sans-serif;
}

.terms-section{
    background:#f5f5f5;
    padding:100px 20px;
}

.terms-container{
    max-width:1000px;
    margin:auto;
    background:#ffffff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.terms-container h2{
    color:#111827;
    font-size:32px;
    margin-top:35px;
    margin-bottom:15px;
    font-family:Arial,sans-serif;
}

.terms-container p{
    color:#475569;
    font-size:19px;
    line-height:1.9;
    font-family:Arial,sans-serif;
}

.terms-contact-box{
    margin-top:25px;
    background:#eff6ff;
    padding:20px;
    border-radius:12px;
}

.terms-contact-box p{
    color:#2563eb;
    font-weight:700;
}

.terms-updated{
    margin-top:30px;
    color:#111827;
    font-weight:800;
    font-family:Arial,sans-serif;
}

@media(max-width:768px){
    .terms-hero{
        padding:80px 20px;
    }

    .terms-hero h1{
        font-size:38px;
    }

    .terms-hero p{
        font-size:18px;
    }

    .terms-container{
        padding:30px;
    }

    .terms-container h2{
        font-size:24px;
    }

    .terms-container p{
        font-size:16px;
    }
}





/* PEACE EQUALIZER PAGE */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial,sans-serif;
  background:#f5f5f5;
  color:#111827;
}

.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

/* HERO */

.peace-hero{
  background:linear-gradient(135deg,#3b82f6,#2563eb,#4338ca);
  min-height:600px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:100px 20px;
}

.peace-hero-content{
  max-width:1000px;
}

.peace-hero h1{
  font-size:80px;
  font-weight:800;
  color:white;
  margin-bottom:30px;
}

.peace-hero p{
  font-size:28px;
  line-height:1.7;
  color:#dbeafe;
  max-width:900px;
  margin:0 auto 40px;
}

.peace-btn{
  display:inline-block;
  background:white;
  color:#2563eb;
  padding:18px 38px;
  border-radius:14px;
  text-decoration:none;
  font-size:20px;
  font-weight:800;
}

/* ABOUT */

.peace-about{
  background:white;
  padding:90px 20px;
  text-align:center;
}

.peace-about h2,
.peace-features h2,
.peace-installation h2,
.peace-faq h2,
.peace-cta h2{
  font-size:48px;
  font-weight:800;
  margin-bottom:30px;
  color:#111827;
}

.peace-about p{
  max-width:950px;
  margin:auto;
  font-size:20px;
  line-height:1.9;
  color:#475569;
}

/* FEATURES */

.peace-features{
  background:#f5f5f5;
  padding:90px 20px;
  text-align:center;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.feature-card{
  background:white;
  padding:35px;
  border-radius:18px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  text-align:left;
}

.feature-card h3{
  font-size:24px;
  margin-bottom:15px;
  color:#111827;
}

.feature-card p{
  font-size:18px;
  line-height:1.7;
  color:#475569;
}

/* INSTALLATION */

.peace-installation{
  background:white;
  padding:90px 20px;
  text-align:center;
}

.install-steps{
  max-width:900px;
  margin:auto;
  display:grid;
  gap:20px;
}

.step{
  background:#f8fafc;
  padding:22px;
  border-radius:14px;
  display:flex;
  align-items:center;
  gap:20px;
  text-align:left;
}

.step span{
  width:45px;
  height:45px;
  min-width:45px;
  background:#2563eb;
  color:white;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  font-weight:800;
}

.step p{
  font-size:18px;
  color:#475569;
}

/* FAQ */

.peace-faq{
  background:#f5f5f5;
  padding:90px 20px;
}

.peace-faq h2{
  text-align:center;
}

.faq-item{
  max-width:900px;
  margin:0 auto 18px;
  background:white;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 5px 18px rgba(0,0,0,.08);
}

.faq-question{
  width:100%;
  border:none;
  background:white;
  padding:22px 28px;
  font-size:19px;
  font-weight:800;
  color:#111827;
  text-align:left;
  cursor:pointer;
}

.faq-answer{
  padding:0 28px 22px;
}

.faq-answer p{
  font-size:17px;
  line-height:1.7;
  color:#475569;
}

/* CTA */

.peace-cta{
  background:linear-gradient(135deg,#2563eb,#4338ca);
  padding:90px 20px;
  text-align:center;
  color:white;
}

.peace-cta h2{
  color:white;
}

.peace-cta p{
  font-size:22px;
  line-height:1.8;
  max-width:800px;
  margin:0 auto 35px;
  color:#dbeafe;
}

/* FOOTER */

.footer{
  background:#0f172a;
  color:white;
  text-align:center;
  padding:30px 20px;
}

.footer p{
  color:#cbd5e1;
}

/* RESPONSIVE */

@media(max-width:992px){
  .feature-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .peace-hero h1{
    font-size:58px;
  }
}

@media(max-width:768px){
  .peace-hero{
    min-height:450px;
    padding:80px 20px;
  }

  .peace-hero h1{
    font-size:42px;
  }

  .peace-hero p{
    font-size:19px;
  }

  .peace-about h2,
  .peace-features h2,
  .peace-installation h2,
  .peace-faq h2,
  .peace-cta h2{
    font-size:34px;
  }

  .feature-grid{
    grid-template-columns:1fr;
  }

  .step{
    align-items:flex-start;
  }
}





/* HESUVI PAGE */

.hesuvi-hero{
  min-height:600px;
  background:linear-gradient(135deg,#3b82f6,#2563eb,#0ea5e9);
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:100px 20px;
}

.hesuvi-content{
  max-width:1200px;
  margin:auto;
}

.hesuvi-content h1{
  font-family:Arial,sans-serif;
  font-size:68px;
  font-weight:800;
  color:#fff;
  line-height:1.2;
  margin-bottom:35px;
}

.hesuvi-content p{
  font-family:Arial,sans-serif;
  font-size:28px;
  color:#dbeafe;
  line-height:1.8;
  max-width:1000px;
  margin:0 auto 40px;
}

.hesuvi-btn{
  display:inline-block;
  padding:18px 40px;
  background:#fff;
  color:#2563eb;
  text-decoration:none;
  border-radius:14px;
  font-size:20px;
  font-weight:800;
}

.hesuvi-about,
.hesuvi-work{
  background:#ffffff;
  padding:90px 20px;
  text-align:center;
}

.hesuvi-features,
.hesuvi-faq{
  background:#f5f5f5;
  padding:90px 20px;
}

.hesuvi-install{
  background:#ffffff;
  padding:90px 20px;
}

.hesuvi-about h2,
.hesuvi-features h2,
.hesuvi-work h2,
.hesuvi-install h2,
.hesuvi-faq h2{
  font-family:Arial,sans-serif;
  font-size:46px;
  font-weight:800;
  color:#111827;
  text-align:center;
  margin-bottom:30px;
}

.hesuvi-about p,
.hesuvi-work p{
  max-width:950px;
  margin:0 auto;
  font-family:Arial,sans-serif;
  font-size:20px;
  line-height:1.9;
  color:#475569;
}

@media(max-width:768px){
  .hesuvi-hero{
    min-height:450px;
    padding:80px 20px;
  }

  .hesuvi-content h1{
    font-size:38px;
  }

  .hesuvi-content p{
    font-size:19px;
  }

  .hesuvi-about h2,
  .hesuvi-features h2,
  .hesuvi-work h2,
  .hesuvi-install h2,
  .hesuvi-faq h2{
    font-size:32px;
  }
}





.download-hero{
    background: linear-gradient(
        135deg,
        #3b82f6 0%,
        #2563eb 50%,
        #1e40af 100%
    );

    min-height: 380px;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 80px 20px;
}

.download-hero-content{
    max-width: 1000px;
    margin: auto;
}

.download-hero-content h1{
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.2;
    font-family: Arial, sans-serif;
}

.download-hero-content p{
    font-size: 30px;
    line-height: 1.8;
    color: #dbeafe;
    max-width: 1100px;
    margin: auto;
    font-family: Arial, sans-serif;
}





.download-box-section{
    background:#f5f5f5;
    padding:80px 20px;
}

.download-box{
    max-width:950px;
    margin:auto;

    background:#22c55e;

    border-radius:20px;

    padding:70px 30px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.download-icon{
    font-size:70px;
    color:#fff;
    margin-bottom:20px;
}

.download-box h2{
    font-size:52px;
    color:#fff;
    font-weight:800;
    margin-bottom:15px;
    font-family:Arial,sans-serif;
}

.release-text{
    color:#eafff0;
    font-size:24px;
    margin-bottom:35px;
}

.file-size{
    display:inline-block;

    background:#16a34a;

    color:#fff;

    padding:14px 28px;

    border-radius:10px;

    font-size:20px;

    font-weight:700;

    margin-bottom:50px;
}

.download-apo-btn{
    display:inline-block;

    background:#fff;

    color:#16a34a;

    text-decoration:none;

    padding:20px 40px;

    border-radius:14px;

    font-size:24px;

    font-weight:800;

    transition:.3s;
}

.download-apo-btn:hover{
    transform:translateY(-3px);
}

.release-info{
    margin-top:35px;

    color:#eafff0;

    font-size:18px;
}







.download-features{
  background:#f5f5f5;
  padding:80px 20px;
}

.download-features-container{
  max-width:1200px;
  margin:0 auto;
}

.download-features h2{
  text-align:center;
  font-family:Arial,sans-serif;
  font-size:34px;
  font-weight:800;
  color:#111827;
  margin-bottom:45px;
}

.download-features-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.download-feature-card{
  background:#ffffff;
  min-height:165px;
  padding:28px 24px;
  border-radius:14px;
  box-shadow:0 8px 22px rgba(0,0,0,.08);
  transition:.3s;
}

.download-feature-card:hover{
  transform:translateY(-6px);
}

.feature-top{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}

.feature-icon{
  font-size:30px;
  font-weight:800;
  line-height:1;
}

.blue{color:#2563eb;}
.green{color:#16a34a;}
.purple{color:#9333ea;}
.orange{color:#f97316;}
.pink{color:#db2777;}
.violet{color:#4f46e5;}

.download-feature-card h3{
  font-family:Arial,sans-serif;
  font-size:19px;
  font-weight:800;
  color:#0f172a;
  margin:0;
}

.download-feature-card p{
  font-family:Arial,sans-serif;
  font-size:16px;
  line-height:1.7;
  color:#475569;
  margin:0;
}

.feature-badge{
  display:inline-block;
  margin-top:4px;
  background:#2563eb;
  color:#fff;
  padding:4px 12px;
  border-radius:30px;
  font-family:Arial,sans-serif;
  font-size:14px;
  font-weight:700;
}

@media(max-width:992px){
  .download-features-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .download-features-grid{
    grid-template-columns:1fr;
  }

  .download-features h2{
    font-size:28px;
  }
}



.os-section{
  background:#f5f5f5;
  padding:80px 20px;
}

.os-card{
  max-width:950px;
  margin:0 auto;
  background:#ffffff;
  padding:40px;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.os-card h2{
  font-family:Arial,sans-serif;
  font-size:28px;
  font-weight:800;
  color:#111827;
  margin-bottom:30px;
}

.os-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.os-box{
  background:#eff6ff;
  padding:16px 18px;
  border-radius:10px;
  font-family:Arial,sans-serif;
  font-size:17px;
  font-weight:800;
  color:#111827;
}

.os-box span{
  display:inline-block;
  background:#2563eb;
  color:#ffffff;
  padding:4px 10px;
  border-radius:20px;
  font-size:14px;
  margin-left:5px;
}

@media(max-width:768px){
  .os-card{
    padding:25px;
  }

  .os-grid{
    grid-template-columns:1fr;
  }

  .os-card h2{
    font-size:24px;
  }
}





.home-screen-section{
    background:#f5f5f5;
    padding:80px 20px;
}

.home-screen-card{
    max-width:900px;
    margin:0 auto;

    background:#fff;

    border-radius:14px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.home-screen-card img{
    width:100%;
    display:block;
}

.home-screen-content{
    padding:30px;
    text-align:center;
}

.home-screen-content h2{
    font-size:32px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:15px;
    font-family:Arial,sans-serif;
}

.home-screen-content p{
    font-size:18px;
    color:#64748b;
    font-family:Arial,sans-serif;
    line-height:1.7;
}




.help-cta{
    background:#f5f5f5;
    padding:80px 20px;
}

.help-cta-box{
    max-width:700px;
    margin:0 auto;

    text-align:center;

    padding:50px 30px;

    border-radius:16px;

    background:linear-gradient(
        135deg,
        #2563eb,
        #4338ca
    );

    box-shadow:0 10px 25px rgba(0,0,0,.10);
}

.help-cta-box h2{
    color:#fff;
    font-size:38px;
    font-weight:800;
    margin-bottom:18px;
    font-family:Arial,sans-serif;
}

.help-cta-box p{
    color:#dbeafe;
    font-size:18px;
    line-height:1.8;
    max-width:550px;
    margin:0 auto 30px;
    font-family:Arial,sans-serif;
}

.help-btn{
    display:inline-block;

    background:#ffffff;
    color:#2563eb;

    text-decoration:none;

    padding:16px 32px;

    border-radius:12px;

    font-size:18px;
    font-weight:700;

    transition:.3s;
}

.help-btn:hover{
    transform:translateY(-3px);
}




@media(max-width:768px){

    .help-cta-box{
        padding:40px 20px;
    }

    .help-cta-box h2{
        font-size:28px;
    }

    .help-cta-box p{
        font-size:16px;
    }

    .help-btn{
        width:100%;
        max-width:280px;
    }

}





html {
  scroll-behavior: smooth;
}

.toc-box {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  margin: 30px 0;
}

.toc-title {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  padding: 28px 40px;
  font-size: 34px;
  font-weight: 700;
}

.toc-list {
  padding: 26px 40px;
}

.toc-list a {
  display: block;
  color: #0f2454;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  padding: 22px 0;
  border-bottom: 1px solid #e5e7eb;
}

.toc-list a:last-child {
  border-bottom: none;
}

.toc-list a:hover {
  color: #2563eb;
}


#countdownText{
    margin-top:20px;
    color:#ffffff;
    font-size:18px;
    font-weight:600;
}