/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
  background-color: #000;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

h1, h2, h3 {
  color: #fff;
}

p {
  color: #ccc;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #6200EE;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  align-items: center;
  justify-content: center;
  justify-items: center;
}

.btn:hover {
  background-color: #3700B3;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #6200EE;
  color: #6200EE;
}

.btn-outline:hover {
  background-color: #6200EE;
  color: #fff;
}


/* Header */
header {
  background-color: transparent;
  color: white;
  padding: 20px 0;
  display: flex;
}

header .logo {
  display: flex;
  align-items: center;
}

header .logo img {
  height: 40px;
  margin-right: 10px;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav ul li a {
  color: white;
  font-weight: bold;
}


/* Hero Section */
.hero {
  background: url('v.avif') no-repeat center center; /* Replace with your local image */
  color: #fff;
  text-align: center;
  padding: 150px 0;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

/* Features Section */
.features {
  background-color: #000;
  padding: 50px 0;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature-card {
  background: #1E1E1E;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card i {
  font-size: 2rem;
  color: #6200EE;
  margin-bottom: 10px;
}

/* How It Works Section */
.how-it-works {
  text-align: center;
  padding: 50px 0;
  background-color: #1E1E1E;
  align-items: center;
  justify-content: center;
  justify-items: center;
}

.steps {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  align-items: center;
}

.step {
  text-align: center;
  align-items: center;
  justify-content: center;
  justify-items: center;
}

.step span {
  font-size: 2rem;
  color: #6200EE;
  font-weight: bold;
}

/* Testimonials Section */
.testimonials {
  background-color: #000;
  padding: 50px 0;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.testimonial-card {
  background: #1E1E1E;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
  font-style: italic;
}

.author {
  font-weight: bold;
  color: #6200EE;
}

/* Download Section */
.download {
  text-align: center;
  padding: 50px 0;
  background-color: #000;
  color: #fff;
}

.download .btn {
  margin-top: 20px;
}

.small-text {
  font-size: 0.9rem;
  margin-top: 10px;
}

/* FAQ Section */
.faq {
  padding: 50px 0;
  text-align: center;
  background-color: #000;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.faq-card {
  background: #1E1E1E;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: #000;
}

.contact h2 {
  text-align: center;
  margin-bottom: 40px;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact input, .contact textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact button {
  align-self: center;
}


/* Footer Section */
footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

.social-icons a {
  color: #fff;
  font-size: 1.5rem;
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .steps {
    flex-direction: column;
  }

  .step {
    margin-bottom: 20px;
  }
}