body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

main {
  /* padding: 20px; */
  background: #f4f4f4;
}

.join-us {
  text-align: center;
  /* margin-top: 20px; */
}

.join-us h1 {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  font-size: 5vmax;
  color: #dd1b59;
}

.contact-form {
  display: flex;
  gap: 2rem;
  /* max-width: 80vw; */
  margin: auto;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-items: center;
  background: #c6c3d5;
  padding:3.5rem 20px;
  /* border-radius: 10px; */
  /* margin-top: 4rem; */
  /* min-height: 80dvh; */
}
@media screen and (max-width: 400px){
  .contact-form {
    max-width: 100vw;
  }
}

.contact-form img {
  max-height: 20rem;  
  border-radius: 10px;
}

.form-container form *{
  border-radius: 1.5rem !important;
  padding: 1rem !important;
  box-shadow: 0rem 1rem 3rem -1rem black;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form form input,
.contact-form form textarea {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  width: 300px;
}

.contact-form form button {
  padding: 10px;
  border: none;
  border-radius: 5px;
  background: #dd1b59;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

.contact-form form button:hover {
  background: #c2184b;
}

.campaign {
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-top: 40px; */
}

.campaign img {
  max-width: 100%;
  /* border-radius: 10px; */
}

.campaign-text {
  text-align: left;
  margin-left: 20px;
}

.campaign-text h2 {
  color: #1a73e8;
}

.campaign-text p {
  color: #555;
}

footer {
  background: #162447;
  color: white;
  padding: 20px 0;
  text-align: center;
}

footer .footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

footer .footer-content div {
  flex: 1;
  margin: 10px;
}

footer .footer-content h3 {
  border-bottom: 2px solid #dd1b59;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

footer .footer-content ul {
  list-style: none;
  padding: 0;
}

footer .footer-content ul li {
  margin: 5px 0;
}

footer .footer-content ul li a {
  color: white;
  text-decoration: none;
}

footer .footer-content ul li a:hover {
  text-decoration: underline;
}

footer .footer-bottom {
  margin-top: 20px;
}

footer .footer-bottom p {
  margin: 0;
}
@media screen and (min-width:650px) {
  .campaign{
    display: none;
  }
  .contact-form{
    min-height: 60dvh;
  }
}