/* Contact Form Styling */
.contact-section {
  background-color: #000;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.contact-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 15px;
  color: #fff;
}

.contact-section hr {
  width: 60px;
  border: 1px solid #555;
  margin: 20px auto 40px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact-form h4 {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 24px;
  margin-bottom: 25px;
  text-align: center;
  color: #fff;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 0;
  font-family: 'Source Sans Pro', sans-serif;
}

.form-control:focus {
  border-color: #fff;
  outline: none;
}

textarea.form-control {
  min-height: 150px;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  margin: 20px 0;
}

.checkbox-container input {
  margin-right: 10px;
  margin-top: 5px;
}

.submit-btn {
  background-color: #fff;
  color: #000;
  padding: 12px 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #f0f0f0;
}

.disclaimer {
  margin-top: 20px;
  font-size: 12px;
  opacity: 0.7;
}

.disclaimer a {
  color: #fff;
  text-decoration: underline;
}