* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
a:hover {
  color: #0056b3;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.text-center {
  text-align: center;
}

.section-padding {
  padding: 80px 0;
}

.bg-light {
  background-color: #f8f9fa;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  border: none;
}
.btn.btn-primary {
  background-color: #0056b3;
  color: #ffffff;
}
.btn.btn-primary:hover {
  background-color: rgb(0, 61.4972067039, 128);
}
.btn.btn-outline {
  border: 1px solid #0056b3;
  color: #0056b3;
  background: transparent;
}
.btn.btn-outline:hover {
  background-color: #0056b3;
  color: #ffffff;
}

header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
header .logo {
  font-size: 24px;
  font-weight: bold;
  color: #0056b3;
  z-index: 1001;
}
header .logo span {
  color: #002a4d;
}
header .menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
}
@media (max-width: 768px) {
  header .menu-toggle {
    display: block;
  }
}
header nav ul {
  display: flex;
  gap: 32px;
}
@media (max-width: 768px) {
  header nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    padding: 96px 32px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
  }
  header nav ul.active {
    right: 0;
  }
}
header nav ul li a {
  font-weight: 500;
  color: #333333;
}
header nav ul li a.active {
  color: #0056b3;
}

.hero {
  background: linear-gradient(135deg, #002a4d 0%, #0056b3 100%);
  color: #ffffff;
  padding: 120px 0;
  text-align: center;
}
.hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}
.hero p {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border-top: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-5px);
  border-top-color: #0056b3;
}
.service-card h3 {
  margin-bottom: 16px;
  color: #002a4d;
}
.service-card p {
  color: #666666;
  margin-bottom: 16px;
}
.service-card .icon {
  font-size: 40px;
  color: #00a8e8;
  margin-bottom: 16px;
  display: block;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.process-step {
  text-align: center;
  position: relative;
}
.process-step .step-number {
  width: 40px;
  height: 40px;
  background: #00a8e8;
  color: #ffffff;
  border-radius: 50%;
  line-height: 40px;
  margin: 0 auto 16px;
  font-weight: bold;
}
.process-step h4 {
  margin-bottom: 8px;
}
.process-step p {
  color: #666666;
  font-size: 14px;
}

.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}
.contact-form .form-group {
  margin-bottom: 24px;
}
.contact-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.contact-form .form-group input, .contact-form .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
}
.contact-form .form-group input:focus, .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #0056b3;
}
.contact-form .form-group textarea {
  height: 120px;
  resize: vertical;
}

footer {
  background-color: #002a4d;
  color: #ffffff;
  padding: 64px 0 32px;
}
footer .footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  footer .footer-content {
    flex-direction: column;
    gap: 32px;
  }
}
footer .footer-links h4 {
  margin-bottom: 16px;
  color: #00a8e8;
}
footer .footer-links ul li {
  margin-bottom: 8px;
}
footer .footer-links ul li a {
  opacity: 0.8;
}
footer .footer-links ul li a:hover {
  opacity: 1;
}
footer .copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  font-size: 14px;
  opacity: 0.6;
}

/*# sourceMappingURL=style.css.map */
