.contact-main {
  padding: 60px 20px;
  max-width: 1520px;
  margin: 0 auto;
}
.contact-main .contact-container {
  color: #0E3267;
}
.contact-main .contact-container h1 {
  font-size: 55px;
  text-align: center;
  margin-bottom: 20px;
}
.contact-main .contact-container .contact-desc {
  font-size: 33px;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 50px;
  line-height: 1.6;
}
.contact-main .contact-container .contact-content {
  display: flex;
  gap: 120px;
}
.contact-main .contact-container .contact-content .contact-info {
  flex: 1;
}
.contact-main .contact-container .contact-content .contact-info .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.contact-main .contact-container .contact-content .contact-info .info-item .icon-circle {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.contact-main .contact-container .contact-content .contact-info .info-item .icon-circle img {
  width: 90px;
}
.contact-main .contact-container .contact-content .contact-info .info-item .info-content h3 {
  color: #0E3267;
  font-size: 34px;
  margin-bottom: 5px;
}
.contact-main .contact-container .contact-content .contact-info .info-item .info-content p {
  color: #666;
  font-size: 23px;
  line-height: 1.4;
}
.contact-main .contact-container .contact-content .contact-form {
  flex: 2;
}
.contact-main .contact-container .contact-content .contact-form .form-group {
  margin-bottom: 20px;
}
.contact-main .contact-container .contact-content .contact-form .form-group label {
  display: block;
  color: #0E3267;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}
.contact-main .contact-container .contact-content .contact-form .form-group input {
  width: 100%;
  padding: 12px;
  border: 2px solid #0E3267;
  font-size: 16px;
}
.contact-main .contact-container .contact-content .contact-form .form-group input:focus {
  outline: none;
  border-color: #0E3267;
}
.contact-main .contact-container .contact-content .contact-form .form-buttons {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .wedo-main .contact-container h1 {
    font-size: 28px;
  }
  .wedo-main .contact-container .contact-desc {
    font-size: 20px;
  }
  .wedo-main .contact-container .contact-content {
    flex-direction: column;
  }
  .wedo-main .contact-container .contact-content .contact-info {
    order: 2;
  }
  .wedo-main .contact-container .contact-content .contact-form {
    order: 1;
  }
}
