body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  backdrop-filter: blur(5px);
  background-image: url('cback.jpg'); /* Add your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  color: #fff;
}

.middle {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 600px;
  margin-bottom: 30px;
}

.left h2 {
  margin-bottom: 10px;
  font-size: 28px;
}

.left p {
  font-size: 16px;
  margin-bottom: 20px;
}

form h3 {
  margin-bottom: 15px;
}

form input[type="text"],
form input[type="email"],
form input[type="number"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
}

form input[type="submit"] {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

form input[type="submit"]:hover {
  background-color: #0056b3;
}

.content {
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
  max-width: 800px;
}

.content h2 {
  font-size: 26px;
}

.content h2 span {
  color: #ffcc00;
}

.content p {
  font-size: 16px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .middle,
  .content {
    width: 90%;
    padding: 20px;
  }

  .left h2 {
    font-size: 24px;
  }

  .content h2 {
    font-size: 22px;
  }
}
