.map-section {
  margin-bottom: 20px;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 400px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background-color: #e8f1fd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #1a3a5f;
}

.map-placeholder i {
  font-size: 50px;
  margin-bottom: 15px;
}

.contact-section {
  padding: 15px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;
  color: #1a3a5f;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #2a7de1;
}

.section-title p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.contact-content {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
}

.contact-info {
  flex: 1;
}

.contact-form {
  flex: 1;
}

.info-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 15px;
  width: 100%;
}

.info-card h3 {
  font-size: 20px;
  color: #1a3a5f;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8f1fd;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: #e8f1fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 20px;
  color: #2a7de1;
}

.contact-details h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: #1a3a5f;
}

.contact-details p {
  color: #666;
  font-size: 14px;
}

.social-contact {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-contact a {
  width: 40px;
  height: 40px;
  background-color: #f5f7fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  text-decoration: none;
  transition: all 0.3s;
}

.social-contact a:hover {
  background-color: #2a7de1;
  color: #fff;
}

/* 联系表单样式 */
.form-container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1a3a5f;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: #2a7de1;
  outline: none;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  /* display: flex;
  gap: 15px; */
}

.form-row .form-group {
  /* flex: 1; */
}

.form-row .form-group input{
  width: 95%;
}

.required-input{
  color: red;
}

.form-row .form-group input:focus{
  border-color: #2a7de1;
  outline: none;
  box-shadow: #2a7de1;
}

.submit-btn {
  background-color: #2a7de1;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.3s;
  width: 100%;
}

.submit-btn:hover {
  background-color: #1a6bc9;
}




/* 响应式设计 */
@media (max-width: 992px) {
  .contact-content {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 28px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .info-card {
    padding: 20px;
  }

  .contact-content .contact-info{
    width: 100%;
  }
  
  .contact-content .contact-info .info-card {
    width: 100%;
  }

  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
 }
  
  .contact-icon {
    width: 40px;
    height: 40px;
  }
  
  .contact-icon i {
    font-size: 16px;
  }
  
  .form-container {
    padding: 20px;
  }
  
  .faq-section {
    padding: 40px 0;
  }
}