body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}

/* Banner Image */
.banner {
  background: url(contatus-image.png) no-repeat center center / cover;
  background-size: cover;
  height: 65vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
  padding: 20px;
}

.banner h1 {
  font-size: 30px;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  height: auto;
  padding: 15px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  /* background-image: linear-gradient(
    92deg,
    #2b3c78 24.79%,
    #5fb7de 118.96%
  ); */
  margin-right: auto;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 85% 50%, 100% 100%, 0 100%);
}

/* .banner:hover h1 {
  background-image: linear-gradient(
    92deg,
    #5fb7de 24.79%,
    #2b3c78 118.96%
  );
  transform: translateX(20px);
  transition: all 0.3s ease-in-out;
} */
/* Page Content */
.content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 40px;
  background-color: #f4f4f4;
  flex-wrap: wrap;
}

/* Text Section */
.text-container {
  color: #333;
  text-align: left;
  width: 48%;
  padding: 20px;
}

.form-container {
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Form Elements */
.form-container label {
  font-size: 16px;
  margin-bottom: 8px;
}

.form-container input,
.form-container select {
  padding: 10px;
  margin-bottom: 20px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

.form-container button {
  background-color: #2b3c78;
  color: white;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

.form-container button:hover {
  background-color: #5fb7de;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .banner h1 {
    font-size: 20px;
    width: 60%;
  }

  .content {
    flex-direction: column;
    padding: 20px;
  }

  .text-container,
  .form-container {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .banner h1 {
    font-size: 20px;
    width: 80%;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
  }

  .content {
    flex-direction: column;
    padding: 15px;
  }

  .text-container,
  .form-container {
    width: 100%;
    padding: 10px;
  }

  .form-container {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .banner {
    height: 50vh;
    padding: 10px;
  }

  .banner h1 {
    font-size: 20px;
    width: 90%;
    padding: 10px;
    border-radius: 10px;
  }

  .content {
    padding: 10px;
  }

  .text-container,
  .form-container {
    width: 100%;
    padding: 5px;
  }

  .form-container button {
    font-size: 14px;
    padding: 8px;
  }
}
