.contact-section {
  position: relative;
  background-image: url('../img/cont.jpg'); /* Your background image */
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: #fff;
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.contact-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.contact-info h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.contact-info p {
  margin-bottom: 10px;
  color: #ddd;
}

.contact-info .info p {
  margin: 5px 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
select,
.contact-form textarea {
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  min-height: 48px;
}

.contact-form button {
  background-color: hsl(40,100%,43%);
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: black;
}

article h1{
   padding-top: 30px;
  margin-bottom: 20px;
  font-size: 30px;
  text-align: center;
}
/* Responsive */
@media (min-width: 768px) {
  .contact-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
  }

  .contact-info {
    flex: 1;
  }

  .contact-form {
    flex: 1;
  }
}

@media(min-width: 1000px){
  article h1{
    font-size: 40px;
  }
}