<style>
    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      padding: 2rem;
      min-height: 100vh;
    }

    .module-container {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .expand-button {
      width: 100%;
      max-width: 300px;
      padding: 15px 53px;
      background: linear-gradient(180deg, #193bce, #529def);
      border: 3px solid black;
      border-radius: 50px;
      color: white;
      font-family: 'Montserrat', sans-serif;
      font-size: 18px;
      text-transform: uppercase;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 3px 3px 0px black;
      transition: background 0.3s ease;
    }

    .expand-button:hover {
      background: #ec0813;
    }

    .expand-button:active {
      transform: translateY(2px);
      box-shadow: 1.5px 1.5px 0px black;
    }

    .secondary-module {
      max-height: 0;
      display: none;
      transition: max-height 0.15s ease-out;
      margin-top: 0;
    }

    .secondary-module.expanded {
      max-height: 500px;
      margin-top: 1.5rem;
      transition: max-height 0.3s ease-out;
      display: block;
    }

    .hs-social-follow {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .hs-social-follow__link {
      display: inline-block;
      transition: transform 0.2s ease;
    }

    .hs-social-follow__link:hover {
      transform: scale(1.1);
    }

    .hs-social-follow__icon img {
      max-height: 60px;
      width: auto;
      display: block;
    }

    @media (max-width: 640px) {
      .hs-social-follow__icon img {
        max-height: 50px;
      }
    }
  </style>