body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f4f7fa;
  color: #222;
}

header.hero {
  background: linear-gradient(120deg, #1e3c72 0%, #2a5298 100%);
  color: #fff;
  text-align: center;
  padding: 60px 20px 40px 20px;
}

header.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

header.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: #1e3c72;
  padding: 12px 32px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(30,60,114,0.08);
}
.cta-btn:hover {
  background: #1e3c72;
  color: #fff;
}

main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px 0 20px;
}

.services {
  margin-bottom: 50px;
}
.services h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #1e3c72;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.service {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(30,60,114,0.07);
  padding: 28px 22px;
  flex: 1 1 220px;
  max-width: 260px;
  min-width: 200px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(30,60,114,0.13);
}
.service h3 {
  color: #2a5298;
  margin-bottom: 10px;
}

.contact {
  background: #eaf0f7;
  border-radius: 12px;
  padding: 32px 20px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(30,60,114,0.05);
}
.contact h2 {
  color: #1e3c72;
  text-align: center;
}
.contact form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 400px;
  margin: 0 auto 18px auto;
}
.contact input, .contact textarea {
  padding: 10px 12px;
  border: 1px solid #b0bed9;
  border-radius: 6px;
  font-size: 1rem;
  resize: none;
}
.contact button {
  background: #1e3c72;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.contact button:hover {
  background: #2a5298;
}
.contact-info {
  text-align: center;
  margin-top: 18px;
  color: #222;
}
.contact-info a {
  color: #1e3c72;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 18px 0;
  background: #1e3c72;
  color: #fff;
  font-size: 0.95rem;
  border-radius: 0 0 12px 12px;
  margin-top: 30px;
}

@media (max-width: 700px) {
  .service-list {
    flex-direction: column;
    align-items: center;
  }
  main {
    padding: 24px 6px 0 6px;
  }
  .contact {
    padding: 20px 6px;
  }
} 