.hero {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('/assets/images/valeriia-bugaiova-_pPHgeHz1uk-unsplash.jpg') center center/cover no-repeat;
    height: 400px;

}
.hero-content {
    padding: 0 20px;
}
.hero-content > h1 {
    margin-bottom: 20px;
}
.hero-content > p {
    max-width: 750px;
    /* margin: 0 auto; */
    margin-bottom: 30px;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}


/* Details Section */
.details-section{
    margin: 90px 0;
}
.details-section .detail-left ul {
      list-style: none;
}


.contact-form {
  flex: 1;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.form-row {
  display: flex;
  justify-content: space-between;
}

.form-row input {
  width: 40%;
}
input,
textarea {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

#submit{
  padding: 12px;
  background: #171818;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}