.logo {
  font-size: 36px;
  font-weight: bold;
  color: #00a2e8;
}

/* 公司地址和联系方式样式 */
.contact-info1 {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  margin-bottom: 50px;
  background-color: white;
  padding: 20px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.info-item {
  text-align: center;
}
.info-icon {
  font-size: 60px;
  color: #00a2e8;
  margin-bottom: 10px;
}

/* 联系我们部分 */
.contact-section {
  margin-top: 30px;
  padding: 20px 10%;
  background-color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-inf1 {
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 12px;
}

.contact-info1 h3 {
  font-size: 24px;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.info-icon {
  width: 40px;
  height: 40px;
  background-color: #00a2e8;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.section-title {
  text-align: center;
}
.section-title p {
  margin: 10px 0;
}
.info-text h4 {
  font-size: 18px;
  margin-bottom: 5px;
  text-align: left;
}

.info-text p {
  color: #666;
  line-height: 1.6;
}

.contact-form {
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 12px;
}

.contact-form h3 {
  font-size: 24px;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #00a2e8;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.required {
  color: #ff4d4f;
  margin-left: 4px;
}

.submit-btn {
  padding: 12px 30px;
  background-color: #00a2e8;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #007ab3;
}

/* 地图区域 */
.map-section {
  padding: 20px 10%;
  background-color: #f5f7fa;
}

#map-container {
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  .content {
    flex-direction: column;
  }
  .content div {
    width: 100%;
  }
  .content img {
    width: 100%;
    height: 100%;
    margin-left: 0;
  }
  .content p {
    font-size: 14px;
  }
}
