    html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: Arial, sans-serif;
    }

    .split-right {
      background-color: #fff;
      padding: 40px 20px;
      overflow-y: auto;
    }

    .content-box {
      max-width: 90%;
      margin: auto;
      color: #364C85;
    }

    .profile_info_box {
      max-width: 500px;
      margin: 0 auto 30px;
      position: relative;
      z-index: 100;
    }

    .profile_info_box .box {
      background-color: #152D6B;
      padding: 30px;
      border-radius: 5px;
      color: #fff;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
      position: relative;
    }

    .profile_info_box::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: #1A4157;
      z-index: -1;
      transform: translate(6px, 6px);
      border-radius: 5px;
    }

    .profile-social-share {
      background: #f5f5f5;
      padding: 10px;
      border-radius: 5px;
      text-align: center;
    }

    .profile-social-share ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .profile-social-share li {
      display: inline-block;
      margin: 0 10px;
    }

    .profile-social-share li a {
      display: flex;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      align-items: center;
      justify-content: center;
      background: #eeeeee;
      color: #0e2641;
      font-size: 1.2rem;
      transition: all 0.3s ease-in-out;
    }

    .profile-social-share li a:hover {
      color: #fff;
      background: #0e2641;
      text-decoration: none;
    }

    /* Full height for larger screens only */
    @media (min-width: 768px) {
      .row.split-layout {
        height: 100vh;
        overflow: hidden;
      }

      .split-left,
      .split-right {
        height: 100vh;
      }

      .split-right {
        overflow-y: auto;
      }
    }