
    .btn_container {
      width: 100%;
      max-width: 950px;
      padding: 30px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .animated-btn {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      padding: 14px 20px;
      background-color: #e60023;
      color: #ffffff;
      font-size: clamp(1rem, 2vw, 1.1rem);
      font-weight: bold;
      border: none;
      border-radius: 0.75em;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      animation: blink 1.5s infinite;
      transition: all 0.3s ease;
    }

    .animated-btn:hover {
      background-color: #001f3f;
      color: #ffffff;
      transform: scale(1.1);
      animation: none;
    }

    .animated-btn .text {
      text-align: left;
    }

    .animated-btn .arrow {
      margin-left: auto;
      padding-left: 1em;
      font-size: 1.2em;
      text-align: right;
    }

    @keyframes blink {
      0% { opacity: 1; }
      50% { opacity: 0.6; }
      100% { opacity: 1; }
    }

    @media (max-width: 600px) {
      .animated-btn {
        padding: 12px 16px;
        font-size: 1rem;
      }
      .animated-btn .arrow {
        padding-left: 0.5em;
      }
    }
