.modal-content {
      display: flex;
      flex-direction: row;
      border-radius: 8px;
      overflow: hidden;
    }
    .contact-left {
      background-color: #0A36F5;
      color: white;
      padding: 40px 30px;
      width: 50%;
    }
    .contact-left h2 {
      font-weight: 800;
      font-size: 32px;
    }
    .contact-left em {
      font-weight: 500;
      font-size: 18px;
    }
    .contact-left hr {
      border-color: #ffffff66;
      margin: 20px 0;
    }
    .contact-info p {
      font-size: 16px;
      margin-bottom: 15px;
    }
    .contact-right {
      background-color: #f8f9fa;
      padding: 30px;
      width: 50%;
    }
    @media (max-width: 768px) {
      .modal-content {
        flex-direction: column;
      }
      .contact-left, .contact-right {
        width: 100% !important;
      }
    }