/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body styling */
  body {
    font-family: 'Poppins', sans-serif;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Aligns the content to the top */
    height: 100vh;
    position: relative;
    text-align: center;
    padding-top: 20px; /* Optional: Adjust top padding */
  }
  
  /* Content container */
  .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Aligns the content to the top */
    align-items: center;
    width: 310px; /* Maximum width of content */
    padding: 0 15px; /* Padding to prevent content from touching the sides */
    margin: 0 auto;
  }
  
  .legal-content {
    width: 85%;
    margin: 100px auto 0;
    font-size: 12px;
}

  /* Logo styling */
  .logo {
    width: 135px;
    height: 35px;
    margin-bottom: 20px;
  }
  
  /* Image container */
  .image-container {
    width: 250px;
    height: 250px;
    margin: 50px 0;
  }
  
  .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Heading and paragraph */
  h1 {
    font-weight: 600;
    font-size: 28px;
    color: #26479D;
    margin-bottom: 10px;
  }
  
  p {
    font-weight: 400;
    font-size: 16px;
    color: #26479D;
    margin-bottom: 20px;
  }
  
  /* Link images (side-by-side) */
  .links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
  }
  
  .link-image {
    width: 150px;
    height: 44px;
  }
  
  /* Background images positioning */
  .bg-image {
    position: absolute;
    z-index: -1;
    width: 40%;
    max-width: 205px;
  }
  
  .top-left {
    top: 0;
    left: 0;
  }
  
  .left-middle {
    top: 60%;
    left: 0;
    transform: translateY(-60%);
  }
  
  .right-three-quarters {
    top: 95%;
    right: 0;
    transform: translateY(-95%);
  }
  