body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-color: #141a26;
  font-family: "Inter", sans-serif;
}

nav {
  background-color: rgba(27, 34, 48, 0.85);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dde8ffb9;
  padding: 20px;
}

nav .logo {
  width: 10%;
}

nav ul {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

li,
button,
.logo {
  font-family: inherit;
  font-size: 14px;
  padding: 10px 16px;
  font-weight: 500;
  color: #dde8ff;
}

nav .connectBtn {
  width: 10%;
}

nav button {
  background-color: #246aff;
  border: none;
  border-radius: 5px;
}
section {
  /* height: 80dvh; */
  margin: 30px;
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  justify-content: start;
}

header {
  width: 50%;
  margin: 0px auto;
  padding: 10px 0px;
  text-align: center;
}

header h1 {
  font-family: inherit;
  font-size: 50px;
  font-weight: 700;
  color: #eaeef8;
  margin-bottom: 20px;
  text-transform: uppercase;
}

h2 {
  font-size: 1.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.5;
  text-transform: capitalize;
  color: #eaeef8;
}

header span,
.package span {
  color: #a9b6d1;
  font-size: 16px;
  font-weight: 400;
  font-family: inherit;
}

section button {
  background-color: #246aff;
  width: 80%;
  margin: 20px auto;
  border: none;
  border-radius: 10px;
}

.how-to-section,
.about-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
}

section .how-to,
.about {
  color: #eaeef8;
  box-sizing: border-box;
  padding: 10px;
  text-align: center;
}

.how-to span,
.about span,
.staking-title,
.investment-title {
  background: rgba(137, 181, 250, 0.08);
  padding: 10px;
  border-radius: 10px;
  color: #a9b6d1;
  font-size: 1rem;
}

.how-to h2,
.about h2 {
  margin: 30px auto;
}

.how-to img,
.about img {
  max-width: 60%;
  margin: auto;
}

.steps {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto;
  height: -webkit-fill-available;
  row-gap: 20px;
}

.step {
  background: rgba(137, 181, 250, 0.08);
  width: 50%;
  border-radius: 10px;
}

.step div {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  row-gap: 10px;
}

.right {
  margin-right: 200px;
}

.step h3 {
  font-size: 2rem;
  color: #a9b6d1;
}

.step span {
  color: #a9b6d1;
}

.about-info span {
  color: #a9b6d1;
}

/* Plans html */
.staking-section,
.investment {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 20px;
}

.packages,
.investments {
  display: flex;
  flex-direction: row;
  column-gap: 20px;
}
.package {
  /* background: rgba(137, 181, 250, 0.08); */
  border: 2px solid #eaeef8;
  padding: 20px;
  border-radius: 20px;
  text-align: left;
}

.package .package-img {
  width: 30%;
}
.package-info h2 {
  margin-bottom: 10px;
  border-bottom: 2px solid #eaeef8;
}

.package-info button {
  width: 100%;
}
.investments {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.invest {
  width: 100%;
  background: #246aff;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
}

.invest-info h2 {
  font-size: 1.2rem;
  font-weight: 500;
}

.invest-info h3 {
  font-size: 3.5rem;
  font-weight: 700;
}
.invest-info span {
  font-size: 1rem;
  color: #eaeef8;
  font-weight: 400;
}

hr {
  height: 3px;
  color: #a9b6d1;
  background-color: #a9b6d1;
  margin: 20px auto;
}

.invest-info .usd {
  font-size: 1.2rem;
}

footer {
  width: 100%;
  text-align: center;
  border-top: 1px solid #eaeef8;
}

.divider {
  width: 95%;
  margin: auto;
  height: 2px;
  background-color: #a9b6d1;
}


/* FAQ Styles */
.faq-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-container {
  width: 100%;
  margin-top: 2rem;
}

.faq-item {
  border-bottom: 1px solid #2d3748;
  padding: 1.5rem 0;
}

.faq-question {
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #4299e1;
}

.faq-answer {
  padding-top: 1rem;
  color: #a0aec0;
  line-height: 1.6;
}

.dropdown-icon {
  font-size: 1.5rem;
  margin-left: 1rem;
}

/* Contact Form Styles */
.contact-section {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  background: #1a202c;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.form-grid {
  display: grid;
  grid-gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: span 2;
}

label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #cbd5e0;
}

/* input, textarea {
  background: #2d3748;
  border: 1px solid #4a5568;
  padding: 0.8rem;
  border-radius: 6px;
  color: white;
  font-family: 'Inter', sans-serif;
}

textarea {
  resize: vertical;
} */

.contact-form button {
  background: #4299e1;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 1.5rem;
  width: 100%;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #3182ce;
}

@media (max-width: 768px) {
  .form-grid {
      grid-template-columns: 1fr;
  }
  .form-group.full-width {
      grid-column: span 1;
  }
}

@media only screen and (max-width: 700px) {
  nav .logo {
    width: 30%;
  }

  nav ul {
    display: none;
  }

  nav .connectBtn {
    width: 20%;
  }


  header {
    width: 90%;
    margin: 0px auto;
    padding: 10px 0px;
    text-align: center;
  }

  header h1 {
    font-family: inherit;
    font-size: 2rem;
    font-weight: 700;
    color: #eaeef8;
    margin-bottom: 20px;
    text-transform: uppercase;
  }

  header span,
  .package span {
    color: #a9b6d1;
    font-size: 1.2rem;
    font-weight: 400;
    font-family: inherit;
  }

  section button {
    background-color: #246aff;
    width: 80%;
    margin: 20px auto;
    border: none;
    border-radius: 10px;
  }

  .how-to-section,
  .about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  section .how-to,
  .about {
    color: #eaeef8;
    box-sizing: border-box;
    padding: 10px;
  }

  .how-to span,
  .about span,
  .staking-title,
  .investment-title {
    background: rgba(137, 181, 250, 0.08);
    padding: 10px;
    border-radius: 10px;
    color: #a9b6d1;
    font-size: 1rem;
  }

  .how-to h2,
  .about h2 {
    margin: 30px auto;
  }

  .steps {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 20px auto;
    height: -webkit-fill-available;
    row-gap: 20px;
  }

  .step {
    background: rgba(137, 181, 250, 0.08);
    width: 100%;
    border-radius: 10px;
  }

  .step div {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    row-gap: 10px;
  }

  .right {
    margin-right: 0;
  }

  .step h3 {
    font-size: 2rem;
    color: #a9b6d1;
  }

  .step span,
  .about-info span {
    color: #a9b6d1;
  }

  .about-info {
    padding: 10px;
    display: flex;
    row-gap: 10px;
    border-radius: 10px;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
  }

  /* Plan html */
  .staking-section,
  .investment {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    text-align: left;
  }
  .packages,
  .investments {
    padding: 10px 0px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .package {
    /* background: rgba(137, 181, 250, 0.08); */
    border: 2px solid #eaeef8;
    padding: 20px;
    border-radius: 20px 10px;
  }

  .package .package-img {
    width: 30%;
  }
  .package-info h2 {
    margin-bottom: 10px;
    border-bottom: 2px solid #eaeef8;
  }
  .package-info button {
    width: 100%;
  }

  .investments {
    width: 100%;
  }

  .invest-info h2 {
    font-size: 1.2rem;
    font-weight: 500;
  }

  .invest-info h3 {
    font-size: 3.5rem;
    font-weight: 700;
  }
  .invest-info span {
    font-size: 1rem;
    color: #eaeef8;
    font-weight: 400;
  }

  hr {
    height: 3px;
    color: #a9b6d1;
    background-color: #a9b6d1;
    margin: 20px auto;
  }

  .invest-info .usd {
    font-size: 1.2rem;
  }
  .devhidden {
    display: none;
  }

  footer {
    text-align: center;
    border-top: 1px solid #eaeef8;
  }
}


