body {
  font-family: 'Inter', 'Roboto', 'Poppins', Arial, sans-serif;
  margin: 0;
  background: #f8fafc;
  color: #222;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5vw;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #2563eb;
  letter-spacing: 1px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
}
.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #2563eb;
}
.hero {
  background: linear-gradient(120deg, #2563eb 0%, #60a5fa 100%);
  color: #fff;
  padding-bottom: 4rem;
  animation: fadeIn 1s;
}
.hero-content {
  text-align: center;
  padding: 5rem 2rem 2rem 2rem;
}
.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero-content .brand {
  color: #fff200;
  background: #2563eb;
  padding: 0 0.5rem;
  border-radius: 4px;
}
.cta-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 2.2rem;
  background: #fff;
  color: #2563eb;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.cta-btn:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.intro, .services-overview, .benefits, .testimonials, .final-cta {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  margin-top: 2rem;
  animation: fadeInUp 1s;
}
.intro h2, .services-overview h2, .benefits h2, .testimonials h2, .final-cta h2 {
  color: #2563eb;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.service-card {
  flex: 1 1 180px;
  min-width: 180px;
  background: #f1f5f9;
  border-radius: 12px;
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 1px 6px rgba(0,0,0,0.03);
  margin-bottom: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 4px 16px rgba(37,99,235,0.08);
}
.service-card i {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2563eb;
}
.benefits ul {
  list-style: disc inside;
  padding-left: 1rem;
}
.benefits li {
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}
.testimonials {
  background: #f1f5f9;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.testimonial {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
  padding: 1.5rem 2rem;
  max-width: 350px;
  font-style: italic;
  color: #222;
  margin-bottom: 1rem;
}
.final-cta {
  text-align: center;
  background: linear-gradient(90deg, #2563eb 60%, #60a5fa 100%);
  color: #fff;
  margin-bottom: 2rem;
}
.final-cta h2 {
  color: #fff;
}
footer {
  background: #222e3a;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  font-size: 1rem;
  margin-top: 2rem;
}
.footer-brand {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #60a5fa;
  text-decoration: none;
  margin: 0 0.5rem;
  font-size: 1rem;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-contact {
  margin-top: 0.7rem;
  font-size: 0.98rem;
}
@media (max-width: 900px) {
  .services-list {
    flex-direction: column;
    gap: 1rem;
  }
  .testimonial-list {
    flex-direction: column;
    gap: 1rem;
  }
}
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2vw;
  }
  .hero-content {
    padding: 3rem 0.5rem 1.5rem 0.5rem;
  }
  .intro, .services-overview, .benefits, .testimonials, .final-cta {
    padding: 2rem 0.5rem;
  }
  .service-card {
    padding: 1.2rem 0.5rem;
  }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Icon placeholders */
.icon-dev::before { content: '\1F4BB'; }
.icon-cloud::before { content: '\2601'; }
.icon-infra::before { content: '\1F5A5'; }
.icon-support::before { content: '\1F527'; }
.icon-custom::before { content: '\1F4A1'; }
