:root {
  --primary: #0056b3;
  --light: #f7f9fc;
  --dark: #2c3e50;
  --accent: #e74c3c;
  --text: #333;
  --light-gray: #eaeff5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--light);
  color: var(--text);
  line-height: 1.6;
}


.hero {
  background: linear-gradient(135deg, #f7f9fc 0%, #e6f0ff 100%);
  padding: 3rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/api/placeholder/1200/400");
  background-size: cover;
  opacity: 0.05;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 700;
  animation: fadeInDown 1s;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--text);
  animation: fadeIn 1.2s;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: var(--primary);
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInUp 1.5s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

.btn-secondary {
  background: var(--secondary);
  margin-left: 1rem;
}

.features {
  padding: 5rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
  position: relative;
  color: var(--dark);
  animation: fadeIn 1s;
}

.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 0.5rem auto;
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.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: 100%;
  height: 5px;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover:before {
  opacity: 1;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--light-gray);
  color: var(--primary);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  transition: transform 0.3s, background 0.3s, color 0.3s;
}

.feature-card:hover .feature-icon {
  transform: rotateY(360deg);
  background: var(--primary);
  color: white;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--dark);
  font-size: 1.3rem;
}

.feature-card p {
  color: #666;
}

.benefits {
  background: linear-gradient(135deg, #f0f5ff 0%, #f7f9fc 100%);
  padding: 5rem 0;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.benefit-item {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: transform 0.3s;
}

.benefit-item:hover {
  transform: scale(1.02);
}

.benefit-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--light-gray);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.5rem;
  transition: transform 0.3s, background 0.3s, color 0.3s;
}

.benefit-item:hover .benefit-icon {
  background: var(--primary);
  color: white;
  transform: rotateY(180deg);
}

.benefit-content h3 {
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.solutions {
  padding: 5rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}

.solution-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.solution-card:hover {
  transform: translateY(-10px);
}

.solution-image {
  height: 200px;
  overflow: hidden;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.solution-card:hover .solution-image img {
  transform: scale(1.1);
}

.solution-content {
  padding: 1.5rem;
  background: white;
}

.solution-content h3 {
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.cta {
  background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
  color: white;
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta:before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(45deg);
  top: -50%;
  left: -50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.cta p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.btn-white {
  background: white;
  color: var(--primary);
}

.btn-white:hover {
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.testimonials {
  padding: 5rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-container {
  padding: 0 1rem;
  position: relative;
}

.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
  position: relative;
}

.testimonial-card:before {
  content: "\201C";
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 1rem;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--light-gray);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.testimonial-info p {
  color: #666;
  font-size: 0.9rem;
}

/* Animation classes */
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.8s forwards;
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.animate-fade-right {
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInRight 0.8s forwards;
}

.animate-fade-left {
  opacity: 0;
  transform: translateX(20px);
  animation: fadeInLeft 0.8s forwards;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animation Delay Classes */
.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .feature-card,
  .benefit-item,
  .solution-card {
    margin-bottom: 1.5rem;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }

  .btn-secondary {
    margin-left: 0;
  }

  .section-title {
    font-size: 1.8rem;
  }
}
