*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}
body {
  background-color: #f5f5f5;
}

.navbar{
  background:#000;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 8%;
  position: relative;
  z-index: 9999;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 55px;   
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-links{
  display:flex;
  list-style:none;
  gap:35px;
}

.nav-links li{
  color:#fff;
  font-size:14px;
  cursor:pointer;
}

.nav-links li:hover,
.nav-links .active{
  color:#64d20f;
}

.nav-links li a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.menu-toggle{
  display:none;
  font-size:28px;
  color:#fff;
  cursor:pointer;
}

.nav-bottom-line{
  height:4px;
  width:100%;
  background:linear-gradient(
    90deg,
    #64d20f 0%,
    #64d20f 25%,
    #00bcd4 25%,
    #00bcd4 50%,
    #f4a623 50%,
    #f4a623 75%,
    #ff3ca0 75%,
    #ff3ca0 100%
  );
}

.dropdown{
  position: relative;
  cursor: pointer;
}

.arrow{
  font-size:10px;
  margin-left:4px;
}

.dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  background:#000;
  padding:10px 0;
  list-style:none;
  display:none;
  min-width:220px;
  border-radius:6px;
  z-index:99999;
}

.show-dropdown{
  display:block;
}

.dropdown-menu li{
  padding:8px 15px;
}

.dropdown-menu li a{
  color:#fff;
  text-decoration:none;
  font-size:13px;
}

.dropdown-menu li:hover{
  background:#64d20f;
}
.dropdown:hover .dropdown-menu {
  display: block;
}

.terms-hero{
  position:relative;
  height:300px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(120deg,#1f2937,#2e314d,#0f172a);
  color:#fff;
  text-align:center;
  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:linear-gradient(120deg,rgba(100,210,15,0.3),rgba(255,60,160,0.3));
}

.hero-content{
  position:relative;
  z-index:2;
}

.hero-content h1{
  font-size:42px;
  margin-bottom:10px;
}

.hero-content p{
  font-size:16px;
  opacity:0.9;
}

.terms-wrapper{
  padding:100px 8%;
  display:flex;
  justify-content:center;
}

.terms-card{
  background:#fff;
  width:100%;
  max-width:1000px;
  padding:60px;
  border-radius:20px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.term-item{
  display:flex;
  gap:30px;
  margin-bottom:40px;
  align-items:flex-start;
}

.term-number{
  font-size:28px;
  font-weight:700;
  color:#64d20f;
  min-width:60px;
}

.term-text h2{
  font-size:20px;
  margin-bottom:10px;
  color:#2e314d;
}

.term-text p{
  font-size:15px;
  line-height:1.8;
  color:#555;
}

.terms-footer{
  background:#000;
  color:#fff;
  text-align:center;
  padding:25px;
  font-size:14px;
}

@media(max-width:768px){
  .terms-card{
    padding:30px;
  }

  .term-item{
    flex-direction:column;
  }

  .term-number{
    font-size:22px;
  }

  .hero-content h1{
    font-size:28px;
  }
}
.terms-acceptance{
  padding:100px 8%;
  background:linear-gradient(120deg,#e8f7c6,#f6d9e5,#e0f2d7);
}

.accept-container{
  max-width:1100px;
  margin:auto;
  display:flex;
  gap:60px;
  flex-wrap:wrap;
}

.accept-left,
.accept-right{
  flex:1;
  background:#fff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,0.06);
}

.accept-left h2,
.accept-right h2{
  font-size:22px;
  margin-bottom:15px;
  color:#2e314d;
}

.accept-left p,
.accept-right p{
  font-size:15px;
  line-height:1.8;
  color:#555;
}

.accept-btn{
  display:inline-block;
  margin-top:20px;
  padding:12px 28px;
  background:#64d20f;
  color:#fff;
  text-decoration:none;
  border-radius:30px;
  font-weight:600;
  transition:0.3s ease;
}

.accept-btn:hover{
  background:#55a70c;
}

@media(max-width:768px){
  .accept-container{
    flex-direction:column;
  }
}