@media (max-width: 1024px) {
  .mobile {
    display: block;
  }
  .desktop {
    display: none;
  }
  .container {
    flex-direction: column;
  }
  .left-content {
    padding: 40px 20px;
    width: 100%;
  }
  .right-content {
    height: auto;
    width: 100%;
    flex-direction: column-reverse;
    padding: 0;
  }
  .form-container {
    margin-bottom: 30px;
    border: none;
  }
  .handshake img {
    margin-top: -160px;
    pointer-events: none;
  }
  .right-content::before {
    display: none;
  }
  .left-content::before {
    top: 60%;
  }
  .contact {
    position: fixed;
    bottom: 0;
    background: var(--primary-red);
    color: white;
    width: 100%;
    left: 0;
    text-align: center;
    justify-content: center;
    padding: 10px 10px;
  }
  .contact a {
    gap: 10px;
  }
  .handshake img {
    z-index: 0;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }
  .sub-text {
    font-size: 1.1rem;
  }
  .handshake img {
    margin-top: -80px;
  }
  .form-container {
    width: 100%;
    padding: 40px 20px;
  }
  .contact {
    font-size: 1.4rem;
  }
  .details-box h2,
  .details-box p {
    font-size: 1.2rem;
  }

  .details-box {
    padding: 10px 30px;
  }
  .form-grid {
    gap: 10px 5px;
  }
  .venue {
    font-size: 0.9rem;
  }
  .logo-area img {
    width: 160px;
  }
}
