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

.header {
  background: linear-gradient(90deg, #0a2342 0%, #185adb 100%);
  color: #fff;
  padding-bottom: 0;
  box-shadow: 0 2px 16px rgba(10,35,66,0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.2rem 2rem 0.5rem 2rem;
}

.logo-placeholder {
  width: 60px;
  height: 60px;
  background: #fff;
  color: #185adb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(10,35,66,0.08);
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #b3c7e6;
}

.hero {
  text-align: center;
  padding: 3.5rem 1rem 2.5rem 1rem;
}

.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.7rem;
  margin: 0 0 0.7rem 0;
  font-weight: 700;
  letter-spacing: 1px;
}

.subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  margin-top: 0.5rem;
  color: #b3c7e6;
}

.cta-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 2.2rem;
  background: #fff;
  color: #185adb;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(24,90,219,0.08);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.cta-btn:hover {
  background: #185adb;
  color: #fff;
}

main {
  max-width: 900px;
  margin: 2.5rem auto;
  padding: 0 1rem;
}

section {
  margin-bottom: 2.5rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(24,90,219,0.07);
  padding: 2.5rem 2rem;
}

h2 {
  color: #185adb;
  margin-top: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: #f8faff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(24,90,219,0.04);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
}

.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(24,90,219,0.10);
}

.card span {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 0.7rem;
}

.card h3 {
  margin: 0.5rem 0 0.7rem 0;
  font-size: 1.15rem;
  color: #0a2342;
  font-family: 'Montserrat', Arial, sans-serif;
}

.card p {
  color: #444;
  font-size: 1rem;
  margin: 0;
}

.contact-intro {
  text-align: center;
  color: #0a2342;
  font-size: 1.13rem;
  margin: 0 0 2rem 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #b3c7e6;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  background: #f8faff;
  resize: none;
}

.contact-form textarea {
  min-height: 90px;
}

.contact-form button {
  align-self: flex-start;
  padding: 0.7rem 2rem;
  background: #185adb;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form button:hover {
  background: #0a2342;
}

.contact-email {
  color: #185adb;
  font-size: 1rem;
  text-align: center;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 1.2rem 0;
}

.contact-card {
  background: #f8faff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(24,90,219,0.04);
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  transition: transform 0.15s, box-shadow 0.15s;
}

.contact-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(24,90,219,0.10);
}

.contact-icon {
  font-size: 2.1rem;
  color: #185adb;
  flex-shrink: 0;
}

.contact-card h3 {
  margin: 0 0 0.2rem 0;
  font-size: 1.08rem;
  color: #0a2342;
  font-family: 'Montserrat', Arial, sans-serif;
}

.contact-card a {
  color: #185adb;
  text-decoration: none;
  font-size: 1rem;
  word-break: break-all;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-note {
  color: #185adb;
  font-size: 1rem;
  text-align: center;
  margin-top: 1.5rem;
}

footer {
  background: #0a2342;
  color: #fff;
  text-align: center;
  padding: 1.2rem 0;
  margin-top: 2rem;
  font-size: 0.98rem;
  letter-spacing: 0.5px;
}

@media (max-width: 800px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1rem 0.5rem 1rem;
  }
  main {
    padding: 0 0.5rem;
  }
  section {
    padding: 1.2rem 0.7rem;
  }
  .hero {
    padding: 2.2rem 0.5rem 1.5rem 0.5rem;
  }
}

@media (max-width: 600px) {
  .logo-placeholder {
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }
  .nav-links {
    gap: 1rem;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .service-cards {
    grid-template-columns: 1fr;
  }
}