
  .ameson-banner-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 20px auto;
  }
  
  .ameson-banner-wrapper img {
    width: 100%;
    height: auto;
    display: block;
  }

  .ameson-btn-group {
    position: absolute;
    bottom: 8%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 0 10px;
    box-sizing: border-box;
    flex-wrap: nowrap;
    width: 100%;
  }

  .ameson-cta-btn {
    background: linear-gradient(90deg, #005EB8, #73B82F);
    color: #fff !important;
    height: 30px;
    line-height: 30px;
    padding: 0 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    flex-shrink: 0;
  }

  .ameson-cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-decoration: none !important;
    color: #fff !important;
  }

  @media (max-width: 768px) {
    .ameson-btn-group {
      gap: 4px;
      padding: 0 4px;
    }
    .ameson-cta-btn {
      height: 16px;
      line-height: 16px;
      padding: 0 6px;
      font-size: 8px;
      font-weight: 500;
    }
  }

  @media (max-width: 400px) {
    .ameson-btn-group {
      gap: 2px;
      padding: 0 2px;
    }
    .ameson-cta-btn {
      height: 14px;
      line-height: 14px;
      padding: 0 4px;
      font-size: 7px;
      letter-spacing: -0.2px;
    }
  }
