.hero {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 1.2rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 2rem;
  animation: fadeInUp 1.2s ease;
}

.hero-cta {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  animation: fadeInUp 1.4s ease;
}

.hero-cta:hover {
  background-color: #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  background-color: rgba(52, 152, 219, 0.1);
  border-radius: 50%;
  animation: float 8s infinite ease-in-out;
}

.shape:nth-child(1) {
  width: 150px;
  height: 150px;
  top: -30px;
  right: 10%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 10%;
  animation-delay: 2s;
}

.shape:nth-child(3) {
  width: 60px;
  height: 60px;
  bottom: 10%;
  right: 20%;
  animation-delay: 4s;
}

/* Features section */
.features {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
  color: #2c3e50;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: #3498db;
  transition: width 0.3s ease;
  z-index: -1;
}

.feature-card:hover::before {
  width: 100%;
  background-color: rgba(52, 152, 219, 0.05);
}

.feature-icon {
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature-card p {
  color: #666;
}

/* Benefits section */
.benefits {
  background-color: #f1f8fe;
  padding: 5rem 2rem;
}

.benefits-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.benefits-text {
  flex: 1;
  min-width: 300px;
  padding-right: 2rem;
}

.benefits-text h2 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.benefits-list {
  list-style-type: none;
}

.benefits-list li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3498db;
  font-weight: bold;
}

.benefits-image {
  flex: 1;
  min-width: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefits-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Testimonials */
.testimonials {
  padding: 5rem 2rem;
  background-color: white;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 1rem auto;
  text-align: center;
  max-width: 600px;
}

.testimonial-content {
  font-style: italic;
  color: #555;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-content::before,
.testimonial-content::after {
  content: '"';
  font-size: 2rem;
  color: #3498db;
  position: absolute;
}

.testimonial-content::before {
  top: -10px;
  left: -15px;
}

.testimonial-content::after {
  bottom: -30px;
  right: -15px;
}

.testimonial-author {
  font-weight: 600;
  color: #2c3e50;
}

.testimonial-company {
  color: #7f8c8d;
  font-size: 0.9rem;
}

/* CTA section */
.cta {
  background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
  padding: 5rem 2rem;
  text-align: center;
  color: white;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: white;
  color: #2c3e50;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #f1f1f1;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .benefits-content {
    flex-direction: column;
  }

  .benefits-text {
    padding-right: 0;
    margin-bottom: 2rem;
  }
}
