* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

#password-protection {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.password-container {
  max-width: 400px;
  padding: 2rem;
  background: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.password-container input {
  width: 100%;
  padding: 0.5rem;
  margin: 1rem 0;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.password-container button {
  width: 100%;
  padding: 0.5rem;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

body {
  line-height: 1.6;
  color: #333;
}

.hero {
  background: #0b6b01;
  color: white;
  padding: 2rem 5%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@keyframes fallIn {
  0% {
    transform: translateY(-100vh);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fallIn 1.5s ease-out forwards;
}

.creator-button {
  display: inline-block;
  padding: 15px 30px;
  margin-top: 20px;
  background-color: #000000;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.creator-button:hover {
  transform: translateY(-3px);
}

section {
  padding: 5rem 5%;
}

.features-grid, .tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card, .tool-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover, .tool-card:hover {
  transform: translateY(-5px);
  border: 2px solid #fcff00;
}

.benefits {
  background: #000000;
  color: white;
}

.benefits h2, .benefits h3 {
  color: white;
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit {
  text-align: center;
  padding: 2rem;
}

h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #0b6b01;
}

h3 {
  color: #000000;
  margin-bottom: 1rem;
}

footer {
  background: #333;
  color: white;
  padding: 2rem 5%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.social-links a {
  color: white;
  text-decoration: none;
  margin-left: 1rem;
}

.social-links {
  margin-top: 1rem;
}

.testimonials {
  padding: 5rem 5%;
  background: #0b6b01;
  color: white;
}

.testimonials h2, .testimonials h4 {
  color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
}

.testimonial p {
  font-style: italic;
  margin: 1rem 0;
  color: #0b6b01;
}

.testimonial h4 {
  color: #000000;
}


@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .nav-links {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .social-links {
    margin-top: 1rem;
  }

  section {
    padding: 3rem 5%;
  }
}