.page-title,
#page-title,
h1.title,
h1.page-header,
main h1 {
  display: none !important;
}

.spawaj-contact-page-wrapper {
  margin-top: 40px;
  margin-bottom: 60px;
}

.contact-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-map-column {
  flex: 1 1 45%;
  min-width: 300px;
}

.contact-form-column {
  flex: 1 1 50%;
  min-width: 300px;
}

.contact-form-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 800;
  color: #212529;
  margin-bottom: 10px;
  display: block !important;
}

.contact-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: #555;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 30px;
}

.contact-form-container {
  background: #fdfdfd;
  padding: 24px;
  border: 1px solid #e1e4e8;
  border-radius: 4px;
}

.form-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 20px;
  font-style: italic;
}

.spawaj-contact-form .form-item {
  margin-bottom: 20px;
}

.spawaj-contact-form label {
  display: block;
  font-weight: 700;
  font-style: italic;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 8px;
  color: #3b4256;
}

input.form-input-name,
input.form-input-email,
textarea.form-input-message {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 15px;
  border: 1px solid #d1d5db;
  border-radius: 2px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-style: italic;
  background-color: #fff;
  color: #333;
}

input.form-input-name::placeholder,
input.form-input-email::placeholder,
textarea.form-input-message::placeholder {
  color: #3b4256;
  font-style: italic;
  font-weight: 700;
}

input.form-input-name:focus,
input.form-input-email:focus,
textarea.form-input-message:focus {
  outline: none;
  border-color: #ffd600;
  box-shadow: 0 0 0 2px rgba(255, 214, 0, 0.2);
}

/* GDPR Checkbox styling */
.form-type-checkbox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 25px;
  margin-bottom: 20px;
}

.form-type-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1.5px solid #3b4256;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 10px 0 0;
  position: relative;
  background-color: transparent;
}

.form-type-checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #3b4256;
  border-radius: 50%;
}

.form-type-checkbox label {
  font-weight: 700;
  font-style: italic;
  display: block;
  color: #3b4256;
  flex: 1;
  line-height: 20px;
  margin-bottom: 0;
}

.form-type-checkbox .description {
  font-size: 12px;
  color: #6b7280;
  font-style: italic;
  margin-top: 6px;
  line-height: 1.4;
  width: 100%;
  padding-left: 30px;
}

/* Submit Button */
.form-actions-wrapper {
  margin-top: 30px;
}

.btn-submit-contact {
  background-color: #ffde00;
  color: #000;
  border: 3px solid #000;
  padding: 15px 30px;
  font-family: 'Outfit', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-submit-contact:hover {
  background-color: #000;
  color: #ffde00;
}

@media (max-width: 768px) {
  .contact-columns {
    flex-direction: column-reverse;
  }
}
