html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Spinnaker', sans-serif;
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #002244;
}

.contact-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
}

.contact-section h1 {
  font-size: 28px;
  font-weight: bold;
  color: #122983;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 1;
}

.form-group label {
  font-size: 16px;
  margin-bottom: 5px;
  color: #122983;
}

.form-group input,
.form-group textarea {
  border: none;
  background: #e8efff;
  padding: 12px;
  font-size: 16px;
  border-radius: 10px;
  outline: none;
}

.full-width {
  width: 100%;
  margin-top: 20px;
}

textarea {
  resize: none;
}

.file-upload {
  margin-top: 20px;
}

.upload-btn-wrapper {
  position: relative;
  display: inline-block;
}

.upload-btn {
  background: #2463de;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
}

.upload-btn-wrapper input[type=file] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.submit-btn {
  margin-top: 30px;
}

.submit-btn button {
  background: #3449b5;
  color: white;
  padding: 12px 50px;
  font-size: 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.submit-btn button:hover {
  background: #22338c;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}
