body {
  background: #f7f9fc;
  font-family: "Inter", sans-serif;
  margin: 0;
  color: #232a3a;
}
.container {
  max-width: 1170px;
  margin: 52px auto;
  padding: 0 2vw;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  animation: fadeUp 1.2s cubic-bezier(0.36, 1.64, 0.59, 0.91);
}
/* Info left */
.info-panel {
  flex: 1.15 1 320px;
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.contact-label {
  background: #eaf0fb;
  color: #2f4db0;
  display: inline-block;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 20px;
  padding: 0.3rem 1rem;
  letter-spacing: 0.07em;
  margin-bottom: 22px;
  animation: fadeLeft 0.8s cubic-bezier(0.36, 1.64, 0.59, 0.91);
}
.big-title {
  font-size: 2.35rem;
  font-weight: 700;
  color: #232a3a;
  margin-bottom: 41px;
  line-height: 1.1;
  animation: fadeLeft 1.04s cubic-bezier(0.36, 1.64, 0.59, 0.91);
}
.info-list {
  display: flex;
  flex-direction: column;
  gap: 34px;
  font-size: 1.09rem;
  letter-spacing: 0.01em;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.icon-box {
  background: #eaf0fb;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.27rem;
  color: #427bce;
  box-shadow: 0 2px 12px rgba(67, 123, 206, 0.06);
  flex-shrink: 0;
}
.info-content {
  display: flex;
  flex-direction: column;
}
.info-link {
  color: #2f4db0;
  font-weight: 500;
  font-size: 0.97rem;
  text-decoration: none;
  transition: color 0.2s;
  margin-top: 3px;
}
.info-link:hover {
  color: #1b2e69;
  text-decoration: underline;
}
@keyframes floatCloud {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(15px);
  }
}

/* Form Panel */
.form-panel {
  flex: 1.6 1 470px;
  background: #fff;
  border-radius: 17px;
  padding: 37px 35px 28px 35px;
  box-shadow: 0 2px 18px rgba(67, 89, 133, 0.1);
  animation: fadeRight 1.1s cubic-bezier(0.36, 1.64, 0.59, 0.91);
}
.form-panel h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #232a3a;
  margin-bottom: 26px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.form-row {
  display: flex;
  gap: 16px;
}
.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}
label {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 7px;
  color: #232a3a;
  letter-spacing: 0.04em;
}
input,
textarea {
  background: #f7f9fc;
  border: 1.5px solid #d3dbeb;
  border-radius: 8px;
  padding: 13px 15px;
  font-size: 1rem;
  transition: border-color 0.2s;
  font-family: inherit;
  resize: vertical;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: #427bce;
  box-shadow: 0 0 7px rgba(72, 111, 201, 0.12);
}
textarea {
  min-height: 96px;
}
.form-submit {
  background: #2f4db0;
  color: #fff;
  font-weight: 600;
  font-size: 1.07rem;
  border: none;
  border-radius: 8px;
  padding: 1rem 0;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.18s;
  box-shadow: 0 6px 20px rgba(48, 68, 140, 0.14);
}
.form-submit:hover {
  background: #427bce;
  transform: translateY(-2px);
}
.form-footnote {
  display: flex;
  gap: 8px;
  font-size: 0.92rem;
  color: #6b768a;
  margin-top: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.form-footnote a {
  color: #2f4db0;
  text-decoration: underline;
  font-weight: 500;
  margin-right: 5px;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(38px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
    padding: 12px;
    gap: 24px;
  }
  .info-panel,
  .form-panel {
    padding: 18px 8px;
  }
}
@media (max-width: 500px) {
  .container {
    padding: 7px;
  }
  .big-title {
    font-size: 1.3rem;
  }
  .form-panel,
  .info-panel {
    padding: 11px 2px;
  }
}
