body {
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  background: #f7fafd;
  color: #222;
}

/* Navigation */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 12px rgba(25, 118, 210, 0.08);
  padding: 0;
}
.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 70px;
}
.nav-logo {
  height: 48px;
  width: auto;
  margin-right: 24px;
}
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu li {
  margin: 0 18px;
}
.nav-menu a {
  color: #1976d2;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  padding: 8px 0;
  transition: color 0.2s;
  position: relative;
}
.nav-menu a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #1976d2;
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.nav-menu a:hover::after {
  width: 100%;
}
.nav-menu a:hover {
  color: #0d47a1;
}
.nav-actions .nav-btn {
  background: #1976d2;
  color: #fff;
  border-radius: 20px;
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-decoration: none;
  margin-left: 18px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.nav-actions .nav-btn:hover {
  background: #0d47a1;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(120deg, #1976d2 60%, #42a5f5 100%);
  color: #fff;
  text-align: left;
  padding: 80px 0 60px 0;
  position: relative;
  overflow: hidden;
}
.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
  padding: 0 32px;
}
.hero-text {
  flex: 1.2;
  min-width: 260px;
}
.hero-section h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.7rem;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}
.hero-section .highlight {
  color: #ffd600;
}
.hero-sub {
  font-size: 1.2rem;
  margin-bottom: 28px;
  font-family: 'Roboto', Arial, sans-serif;
}
.hero-cta {
  display: flex;
  gap: 18px;
}
.cta-btn {
  background: #fff;
  color: #1976d2;
  padding: 12px 32px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.cta-btn.primary {
  background: #ffd600;
  color: #1976d2;
}
.cta-btn.secondary {
  background: #fff;
  color: #1976d2;
  border: 1px solid #1976d2;
}
.cta-btn:hover {
  background: #1976d2;
  color: #fff;
  border: 1px solid #fff;
  box-shadow: 0 4px 16px rgba(25, 118, 210, 0.18);
}
.hero-image {
  flex: 1;
  min-width: 220px;
  text-align: right;
}
.hero-image img {
  width: 320px;
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(25, 118, 210, 0.13);
}

/* About Section */
.about-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(25, 118, 210, 0.06);
  margin: 48px auto 32px auto;
  max-width: 1000px;
  padding: 40px 32px;
}
.about-flex {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.about-text {
  flex: 2;
}
.about-text h2 {
  color: #1976d2;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  margin-bottom: 16px;
}
.about-img {
  flex: 1;
  min-width: 180px;
  text-align: center;
}
.about-img img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(25, 118, 210, 0.10);
}

/* Feature Highlights */
.feature-highlights {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 48px auto;
  max-width: 1100px;
  flex-wrap: wrap;
}
.feature-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(25, 118, 210, 0.08);
  padding: 32px 20px 28px 20px;
  text-align: center;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.feature-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(25, 118, 210, 0.16);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #1976d2;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 1rem;
  color: #444;
}

/* Solutions Section */
.solutions-section {
  max-width: 1100px;
  margin: 48px auto;
  padding: 0 20px;
}
.solutions-section h2 {
  color: #1976d2;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  margin-bottom: 32px;
  text-align: center;
}
.solutions-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.solution-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(25, 118, 210, 0.08);
  padding: 32px 20px 28px 20px;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
}
.solution-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(25, 118, 210, 0.16);
}
.solution-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
.solution-card h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #1976d2;
  margin-bottom: 10px;
}
.solution-card p {
  font-size: 1rem;
  color: #444;
}

/* Testimonial Section */
.testimonial-section {
  background: #f7fafd;
  padding: 48px 0;
  text-align: center;
}
.testimonial-section blockquote {
  font-size: 1.2rem;
  color: #1976d2;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}
.testimonial-section footer {
  margin-top: 18px;
  color: #444;
  font-size: 1rem;
  font-style: normal;
}

/* Features List Section */
.features-list-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(25, 118, 210, 0.06);
  max-width: 1000px;
  margin: 48px auto 32px auto;
  padding: 40px 32px;
}
.features-list-section h2 {
  color: #1976d2;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  margin-bottom: 32px;
  text-align: center;
}
.features-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.feature-list-card {
  background: #e3f2fd;
  border-radius: 12px;
  padding: 24px 18px;
  text-align: center;
  min-width: 180px;
  flex: 1 1 180px;
  max-width: 260px;
}
.feature-list-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #1976d2;
}
.feature-list-card h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: #1976d2;
  margin-bottom: 0;
}
.features-cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

/* CTA Section */
.cta-section {
  background: #ffd600;
  color: #1976d2;
  text-align: center;
  padding: 48px 0 36px 0;
}
.cta-section h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  margin-bottom: 12px;
}
.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 22px;
}

/* Latest/News Section */
.latest-section {
  background: #fff;
  padding: 48px 0;
}
.latest-flex {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.latest-card {
  background: #f7fafd;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(25, 118, 210, 0.07);
  padding: 24px 18px 18px 18px;
  text-align: center;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
}
.latest-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 14px;
}
.latest-card h4 {
  color: #1976d2;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.latest-card p {
  font-size: 0.98rem;
  color: #444;
  margin-bottom: 10px;
}
.read-more {
  color: #1976d2;
  text-decoration: underline;
  font-size: 0.98rem;
}

/* Contact Section */
.contact-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(25, 118, 210, 0.06);
  max-width: 600px;
  margin: 48px auto 0 auto;
  padding: 40px 32px 32px 32px;
}
.contact-section h2 {
  color: #1976d2;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  margin-bottom: 24px;
  text-align: center;
}
#contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.input-group {
  display: flex;
  align-items: center;
  background: #f1f7fb;
  border-radius: 8px;
  padding: 0 12px;
  border: 1px solid #b0bec5;
}
.input-icon {
  font-size: 1.2rem;
  margin-right: 8px;
  color: #1976d2;
}
#contact-form input,
#contact-form textarea {
  padding: 14px 10px;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  flex: 1;
  outline: none;
  resize: none;
}
#contact-form textarea {
  min-height: 80px;
}
#contact-form button {
  background: #1976d2;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  margin-top: 8px;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.10);
}
#contact-form button:hover {
  background: #0d47a1;
  box-shadow: 0 4px 16px rgba(25, 118, 210, 0.18);
}
#form-status {
  margin-top: 8px;
  color: #1976d2;
  font-size: 0.98rem;
  text-align: center;
}

/* Footer */
.main-footer {
  background: #1976d2;
  color: #fff;
  padding: 40px 0 0 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
.footer-flex {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 32px;
}
.footer-logo-col {
  flex: 1 1 180px;
  min-width: 180px;
}
.footer-logo {
  width: 90px;
  margin-bottom: 10px;
}
.footer-links-col {
  flex: 1 1 120px;
  min-width: 120px;
}
.footer-links-col h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  margin-bottom: 10px;
  color: #ffd600;
}
.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links-col li {
  margin-bottom: 8px;
}
.footer-links-col a {
  color: #fff;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.2s;
}
.footer-links-col a:hover {
  color: #ffd600;
}
.footer-contact-col {
  flex: 1 1 180px;
  min-width: 180px;
}
.footer-contact-col h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  margin-bottom: 10px;
  color: #ffd600;
}
.footer-socials {
  margin-top: 10px;
}
.footer-socials a {
  color: #fff;
  font-size: 1.3rem;
  margin-right: 10px;
  text-decoration: none;
}
.footer-bottom {
  text-align: center;
  padding: 18px 0 0 0;
  margin-top: 24px;
  border-top: 1px solid #fff2;
  font-size: 0.98rem;
}

/* Responsive Styles */
@media (max-width: 1100px) {
  .hero-flex, .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 0 12px;
  }
  .main-nav .nav-flex {
    padding: 0 12px;
  }
}
@media (max-width: 800px) {
  .feature-highlights, .features-list {
    flex-direction: column;
    gap: 18px;
  }
  .solutions-cards, .latest-flex {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .hero-section {
    padding: 40px 0 24px 0;
  }
  .about-section, .features-list-section, .contact-section {
    padding: 18px 4px;
  }
  .about-img img {
    width: 100px;
    height: 100px;
  }
  .footer-flex {
    gap: 12px;
    padding: 0 4px;
  }
  .footer-logo {
    width: 60px;
  }
  .hero-section h1 {
    font-size: 1.5rem;
  }
} 
 .contact-form { max-width: 500px; margin: auto; text-align: left; }
    .contact-form input, .contact-form textarea {
      width: 100%; padding: 12px; margin-bottom: 10px;
      border-radius: 8px; border: 1px solid #ccc;
    }
    .contact-form button {
      background: #320ca0; color: white; border: none;
      padding: 12px 20px; border-radius: 25px; cursor: pointer;
      transition: background 0.3s ease;
    }
    .contact-form button:hover { background: #4a0bc1; }
    @media (max-width: 768px) {
      header h1 { font-size: 2rem; }
      .features, .how-it-works, .testimonials, .faq, .stats { flex-direction: column; align-items: center; }
    }
   
#chatMessages {
    display: flex;
    flex-direction: column;
}