#contact-page {
  width: 100%;
  margin-bottom: 100px;
  overflow-x: hidden;
}

.contact-page-title {
  display: flex;
  margin-top: 80px;
  justify-content: center;
}

.contact-page-title-image {
  width: 30%;
  height: auto;
}

.wpcf7-form {
  max-width: 1100px;
  min-width: 300px;
  margin: 0 auto;
  padding: 2%;
  border-radius: 10px;
  border: 5px dashed #ccc;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper {
  margin: 10px;
}

.contact-label {
  display: block;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-top: 10px;
}

.contact-label input[type="text"],
.contact-label input[type="email"],
.contact-label input[type="tel"],
.contact-label textarea,
.contact-label select {
  width: 100%;
  padding: 14px 2.5rem 14px 12px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.contact-label input:focus,
.contact-label textarea:focus,
.contact-label select:focus {
  border-color: #007acc;
  box-shadow: 0 0 0 4px rgba(0, 122, 204, 0.1);
  outline: none;
}

.contact-label i {
  position: absolute;
  right: 20px;
  top: 75%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 18px;
  color: #666;
}

.contact-label textarea {
  resize: vertical;
  min-height: 140px;
}

.wpcf7-acceptance {
  margin: 20px 0;
  font-size: 16px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
}

#contact-submit {
  background-color: #007acc;
  width: 100%;
  color: #fff;
  padding: 14px 36px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 122, 204, 0.2);
}

#contact-submit:hover {
  background-color: #005fa3;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 95, 163, 0.25);
}

#contact-submit:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 122, 204, 0.3);
}

#contact-submit:disabled {
  background-color: transparent;
  color: #888;
  border: 2px solid #ccc;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}