.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .image {
    width: 50%;
    height: auto;
  }
  
  .content {
    width: 50%;
  }
  
  .paper {
    padding: 24px;
    height: 100%;
  }
  
  .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
  }
  
  .title {
    font-size: 3rem;
    color: #252525;
    font-weight: bold;
    padding-top: 0;
    letter-spacing: normal;
    line-height: normal;
  }
  
  .text {
    margin-top: 30px;
    margin-bottom: 30px; 
    letter-spacing: normal;
    line-height: normal;
  }
  
  .link {
    text-decoration: none;
  }
  
  .light-purple-button {
    background-color: #333;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
  }
  
  
  /* Responsive layout */
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
    }
    .image,
    .content {
      width: 100%;
      max-height: 50vh; /* Adjust the maximum height as needed */
    }
  }

  