<style>
    .hs-social-follow {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      width: 100%;
      margin: 0;
      padding: 0;
    }

    .hs-social-follow__item {
      display: flex;
      width: 100%;
      padding: 5px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.3);
      justify-content: flex-start; /* Force left alignment */
      margin: 0;
    }

    .hs-social-follow__item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .hs-social-follow__link {
      display: flex;
      align-items: center;
      text-decoration: none;
      gap: 10px;
      width: auto;
      color: white !important;
      margin: 0;
      padding: 0;
      justify-content: flex-start;
    }

    .hs-social-follow__icon-container {
      display: inline-flex;
      box-sizing: content-box;
      height: 20px;
      width: 20px;
      padding: 5px;
      margin: 0;
      justify-content: flex-start;
    }

    .hs-social-follow__icon {
      display: flex;
      height: 100%;
      width: 100%;
      align-items: center;
      justify-content: flex-start;
      color: white !important;
    }

    .hs-social-follow__icon svg {
      height: 36px;
      width: 36px;
      fill: white !important;
      margin-left: 0;
    }

    .hs-social-follow__name {
      font-size: 20px;
      color: white !important;
      font-weight: 400;
      cursor: pointer;
      margin: 0;
      padding: 0;
      text-align: left;
      width: auto;
    }
  </style>