body {
  margin: 0;
  background-color: #2c5e08;
  color: #9fe870;
  font-family: 'Figtree', serif;
  line-height: 1.6;
}


header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #9fe870;
}

.logo a {
  font-size: 2em;
  font-weight: bold;
  color: #dbd5c4;
  text-decoration: none;
}


nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav li {
  margin-left: 30px;
}

nav a {
  color: #9fe870;
  text-decoration: none;
  font-size: 1em;
  transition: opacity 0.3s;
}

nav a:hover {
  opacity: 0.7;
}


main {
  padding: 40px 20px;
  text-align: center;
}



.intro p {
  font-size: 3em;
  margin-bottom: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #173303; 
  font-family: 'Figtree', serif;
  font-size: 1em;
}



form {
  padding: 20px;
  background-color: #f5f2e7;
  border-radius: 8px;
  display: inline-block;
  color: #000;
  margin-bottom: 40px;
}

input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 4px;
  width: 250px;
  font-size: 1em;
  font-family: 'Figtree', serif;
  margin-top: 40px;
}

button {
  padding: 10px 15px;
  margin-left: 10px;
  background-color: #9fe870;
  color: #173303;
  border: 2px solid #173303;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'Figtree', serif;
}

button:hover {
  background-color: #9fe870;
}


footer {
  text-align: center;
  padding: 30px 0;
  font-size: 0.9em;
  color: #173303;
  border-top: 1px solid #9fe870;
  background-color: #9fe870;
  margin-top: 100px;

}

footer a,
footer a:visited,
footer a:hover,
footer a:active {
  color: #000;
  text-decoration: none;
}


.steps {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
  padding: 40px 20px;
  background-color: #9fe870;
  border-radius: 20px;
  margin-bottom: 30px;
   margin-top: 20px;
   max-width: 1000px;
   margin-left: auto;
margin-right: auto;

}


.step-box {
  flex: 1 1 250px;
  background-color: #f5f2e7; 
  color: #173303;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 300px;
  text-align: center;
  transition: transform 0.2s ease;
  
}

.step-box:hover {
  transform: translateY(-5px);
}

.step-box h3 {
  margin-bottom: 10px;
  font-size: 1.5em;
  font-weight: 700;
  color: #173303;
}

.step-box p {
  font-size: 1em;
  color: #333;
}
.step-box i {
  display: block;
  margin: 0 auto 10px;
  color: #173303;
  width: 32px;
  height: 32px;
}
.whitepaper{
  background-color: #dbd5c4;
  color:#173303;
}