@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background-color: #f9fafb;
  color: #1f2937;
  margin: 0;
  padding: 0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

header img.logo {
  height: 50px;
}

.header-button {
  background: linear-gradient(90deg, #5D5FEF 0%, #352BCA 100%);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(93, 95, 239, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(93, 95, 239, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(93, 95, 239, 0);
  }
}

.header-button:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 15px rgba(93, 95, 239, 0.5);
}

.hero {
  background: linear-gradient(to right, #5D5FEF, #352BCA);
  color: white;
  padding: 5rem 1.5rem;
  text-align: center;
  animation: fadeIn 1.5s ease-out;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.hero a.button {
  background-color: #ffffff;
  color: #5D5FEF;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: background-color 0.2s;
}

.hero a.button:hover {
  background-color: #f3f4f6;
}

.benefits {
  padding: 3rem 1.5rem;
  background-color: #f3f4f6;
  text-align: center;
}

.benefits h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.benefit-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.benefit-item {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 250px;
  text-align: center;
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-10px);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.testimonials {
  padding: 3rem 1.5rem;
  background-color: #ffffff;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.testimonial-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.testimonial-item {
  background-color: #f3f4f6;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 250px;
  text-align: center;
  font-style: italic;
}

.cta {
  background: linear-gradient(90deg, #5D5FEF 0%, #352BCA 100%);
  color: white;
  padding: 3rem 1.5rem;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.cta-button {
  background-color: #ffffff;
  color: #5D5FEF;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: background-color 0.2s;
}

.cta-button:hover {
  background-color: #f3f4f6;
}

/* Fade In Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

