.contact-pro {
  margin: 48px 0 36px 0;
  padding: 2.4rem 1rem;
  background: linear-gradient(105deg, #fafdff 80%, #e5eeff 100%);
  border-radius: 2rem;
  box-shadow: 0 2px 28px #0a41aa0c;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.contact-pro .section-title {
  font-family: 'Merriweather', serif;
  color: #133366;
  font-size: 2rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.contact-form-wrapper {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-form {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px #0a41aa10;
  padding: 2.1rem 1.4rem 1.3rem 1.4rem;
  min-width: 280px;
  max-width: 390px;
  flex: 1 1 320px;
  text-align: left;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  color: #0a41aa;
  font-weight: 600;
  font-size: 1.07rem;
  margin-bottom: 0.4rem;
  font-family: 'Merriweather', serif;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.68rem 0.8rem;
  border-radius: 8px;
  border: 1.2px solid #d3e2fa;
  font-size: 1.01rem;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7fafd;
  color: #26334d;
  box-shadow: 0 1px 4px #0a41aa08;
  outline: none;
  transition: border 0.15s, box-shadow 0.15s;
}

.form-group input:focus,
.form-group textarea:focus {
  border: 1.5px solid #0a41aa;
  background: #fff;
  box-shadow: 0 2px 12px #0a41aa18;
}

.btn-primary {
  width: 100%;
  margin-top: 0.4rem;
  background: #0a41aa;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 0.74rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px #0a41aa15;
  transition: background 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: #2865c7;
  box-shadow: 0 3px 16px #0a41aa25;
}

.form-status {
  margin-top: 1rem;
  font-size: 1.07rem;
  color: #2865c7;
  min-height: 24px;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.contact-info {
  flex: 1 1 180px;
  text-align: left;
  background: #f6f9ff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px #0a41aa0b;
  padding: 2.1rem 1.4rem 1.3rem 1.4rem;
  min-width: 180px;
  max-width: 260px;
  margin-top: 0.5rem;
  margin-left: 0.4rem;
}

.contact-info h3 {
  color: #0a41aa;
  font-size: 1.22rem;
  margin-bottom: 1rem;
  font-family: 'Merriweather', serif;
}

.contact-info p {
  color: #345;
  font-size: 1.01rem;
  margin: 0.6rem 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.contact-info i {
  color: #2865c7;
  font-size: 1.15rem;
}

@media (max-width: 700px) {
  .contact-form-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  .contact-form,
  .contact-info {
    max-width: 98vw;
    min-width: unset;
  }
}
