/* Global Styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3 {
  color: #222;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.sticky-nav {
  position: sticky;
  top: 0;
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  z-index: 1000;
  padding: 15px 0;
}

.sticky-nav ul {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sticky-nav a {
  text-decoration: none;
  color: #111;
  font-size: 15px;
}

.sticky-nav a:hover {
  color: #3333ff;
}

.hero {
  background: #ffffff;
  padding: 100px 20px 60px;
  text-align: center;
}

.hero-logo {
  max-width: 180px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  padding: 10px;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #222;
}

.hero p {
  color: #666;
  font-size: 1rem;
}

.benefit, .step, .testimonial-card {
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.benefit:hover, .step:hover, .testimonial-card:hover {
  transform: translateY(-5px);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefits-section {
  background: #f9faff;
  padding: 60px 20px;
  text-align: center;
}

.benefits-section h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.benefits-subtext {
  color: #666;
  margin-bottom: 40px;
  font-size: 1rem;
}

.benefits {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.benefit {
  background: #fff;
  padding: 25px 20px;
  width: 260px;
  text-align: center;
}

.benefit img {
  width: 70px;
  margin-bottom: 15px;
}

.benefit h3 {
  margin-bottom: 10px;
  color: #111;
}

.benefit p {
  color: #555;
  font-size: 14px;
}

.testimonials-section {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.testimonial-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.testimonial-cards {
  display: flex;
  gap: 20px;
}

.testimonial-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  width: 260px;
  text-align: center;
}

.testimonial-text {
  font-style: italic;
  color: #444;
  margin-bottom: 10px;
}

.testimonial-stars {
  font-size: 18px;
  margin-bottom: 8px;
}

.testimonial-author {
  font-weight: bold;
  color: #222;
}

.testimonial-arrow {
  background: #3333ff;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.testimonial-arrow:hover {
  background: #0000cc;
}

@media (max-width: 768px) {
  .testimonial-wrapper {
    flex-direction: column;
  }

  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    width: 90%;
    margin-bottom: 20px;
  }

  .testimonial-arrow {
    margin: 10px;
  }
}

.steps {
  background: #f9faff;
  padding: 60px 20px;
  text-align: center;
}

.steps h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.step-boxes {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.step {
  background: #fff;
  padding: 20px 15px;
  width: 260px;
  text-align: center;
}

.step h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.step p {
  font-size: 14px;
  color: #555;
}

.about {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.about h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.about h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #444;
}

.about p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.about img {
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-section {
  background: #f9faff;
  padding: 60px 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-subtext {
  color: #555;
  margin-bottom: 30px;
  font-size: 15px;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  text-align: left;
  font-weight: 500;
  color: #333;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.contact-form button {
  background-color: #3333ff;
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background-color: #0000cc;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.footer {
  background: #f9faff;
  padding: 40px 20px;
  text-align: center;
  color: #555;
}

.footer-icons {
  margin-bottom: 20px;
}

.footer-icons img {
  width: 32px;
  margin: 0 12px;
  opacity: 0.7;
  filter: grayscale(100%) brightness(150%);
  transition: all 0.3s ease;
}

.footer-icons img:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(100%);
  transform: scale(1.1);
}

.footer-links {
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  margin: 0 10px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 13px;
  color: #777;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .sticky-nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .benefits, .step-boxes {
    flex-direction: column;
    align-items: center;
  }

  .about img {
    max-width: 90%;
  }
}
